Digital Developer Conference: a FREE half-day online conference focused on AI & Cloud – North America: Nov 2 – India: Nov 9 – Europe: Nov 14 – Asia Nov 23 Register now

Close outline
  • United States
IBM?
  • Site map
IBM?
  • Marketplace

  • Close
    Search
  • Sign in
    • Sign in
    • Register
  • IBM Navigation
IBM Developer Answers
  • Spaces
    • Blockchain
    • IBM Cloud platform
    • Internet of Things
    • Predictive Analytics
    • Watson
    • See all spaces
  • Tags
  • Users
  • Badges
  • FAQ
  • Help
Close

Name

Community

  • Learn
  • Develop
  • Connect

Discover IBM

  • ConnectMarketplace
  • Products
  • Services
  • Industries
  • Careers
  • Partners
  • Support
10.190.13.195

Refine your search by using the following advanced search options.

Criteria Usage
Questions with keyword1 or keyword2 keyword1 keyword2
Questions with a mandatory word, e.g. keyword2 keyword1 +keyword2
Questions excluding a word, e.g. keyword2 keyword1 -keyword2
Questions with keyword(s) and a specific tag keyword1 [tag1]
Questions with keyword(s) and either of two or more specific tags keyword1 [tag1] [tag2]
To search for all posts by a user or all posts with a specific tag, start typing and choose from the suggestion list. Do not use a plus or minus sign with a tag, e.g., +[tag1].
  • Ask a question

Reseting integer variables to zero after every 10 minutes

3100011UPX gravatar image
Question by NuNu  (9) | Nov 25, 2015 at 03:34 AM streamsdevstreamsinfosphere streamsspl

Hi,

1) is there any way to reset an int32 variable such as totalCount to zero after every 10 minutes? I have an aggregate operator with some int32 totalCount variables. These variables keep on increasing. Then I have a tumbling window with eviction policy of time value 600, which is 600 seconds or 10 minutes. I wanted to reset the value of all my totalCount variables to zero whenever the eviction policy of the tumbling window is triggered.

2) Or is there any way to insert a punctuation mark after every 10 minutes by using the Punctor operator? By doing this, I can change my eviction policy to punctuation mode, and I can add onPunct in the logic clause to reset those variables to zero whenever I detected a punctuation mark. Is this method also one of the alternative ways? Are both of these methods giving me the same outcome ?

Thanks in advance!

People who like this

  0
Comment
10 |3000 characters needed characters left characters exceeded
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster

1 reply

  • Sort: 
27000064QT gravatar image
Accepted answer

Answer by hnasgaard (1441) | Nov 25, 2015 at 06:17 AM

@NuNu

Have you considered using the Custom aggregation function? With that you can control what happens at eviction time. Here some sample code: type CountContext = int32 sum;

 boolean init(mutable CountContext c) {
   c.sum = 0;
   return false;
 }
 
 boolean process(int32 i, mutable CountContext c) {
   c.sum += i;
   return false;
 }
 
 int32 result(mutable CountContext c) {
   int32 count = c.sum;
   c.sum = 0;
   return count;
 }
 
 composite Main {
   graph
     stream<int32 i> Beat = Beacon() {
       param period : .1;
       output Beat : i = 1;
     }
     stream<int32 count> Agg = Aggregate(Beat) {
       logic state : {
         mutable CountContext countContext;
       }
       window Beat : tumbling, time(60.0);
       output Agg : count=Custom(init(countContext), process(i, countContext), result(countContext));
     }
     () as Out = Custom(Agg as IPort0) {
       logic onTuple IPort0 : println(IPort0);
     }
 }
Comment

People who like this

  0   Share
10 |3000 characters needed characters left characters exceeded
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster

Follow this question

53 people are following this question.

Answers

Answers & comments

Related questions

Customizing your own schema attributes based on your own logic 3 Answers

Web Console not available on streams 4.0 2 Answers

i have Error appeared when i build new SPL Project in infosphere stream 1 Answer

when i have tuple in infosphere stream 4.0.1 how make loop in this tuple and put every index in map and list 2 Answers

Can i use two grammer files in teda infosphere stream ? 1 Answer

  • Contact
  • Privacy
  • IBM Developer Terms of use
  • Accessibility
  • Report Abuse
  • Cookie Preferences

Powered by AnswerHub

Authentication check. Please ignore.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • API Connect
  • Analytic Hybrid Cloud Core
  • Application Performance Management
  • Appsecdev
  • BPM
  • Blockchain
  • Business Transaction Intelligence
  • CAPI
  • CAPI SNAP
  • CICS
  • Cloud Analytics
  • Cloud Automation
  • Cloud Object Storage
  • Cloud marketplace
  • Collaboration
  • Content Services (ECM)
  • Continuous Testing
  • Courses
  • Customer Experience Analytics
  • DB2 LUW
  • Data and AI
  • DataPower
  • Decision Optimization
  • DevOps Build
  • DevOps Services
  • Developers IBM MX
  • Digital Commerce
  • Digital Experience
  • Finance
  • Global Entrepreneur Program
  • Hadoop
  • Hybrid Cloud Core
  • Hyper Protect
  • IBM Cloud platform
  • IBM Design
  • IBM Forms Experience Builder
  • IBM Maximo Developer
  • IBM StoredIQ
  • IBM StoredIQ-Cartridges
  • IIDR
  • ITOA
  • InformationServer
  • Integration Bus
  • Internet of Things
  • Kenexa
  • Linux on Power
  • LinuxONE
  • MDM
  • Mainframe
  • Messaging
  • Node.js
  • ODM
  • Open
  • PartnerWorld Developer Support
  • PowerAI
  • PowerVC
  • Predictive Analytics
  • Product Insights
  • PureData for Analytics
  • Push
  • QRadar App Development
  • Run Book Automation
  • Search Insights
  • Security Core
  • Storage
  • Storage Core
  • Streamsdev
  • Supply Chain Business Network
  • Supply Chain Insights
  • Swift
  • UBX Capture
  • Universal Behavior Exchange
  • UrbanCode
  • WASdev
  • WSRR
  • Watson
  • Watson Campaign Automation
  • Watson Content Hub
  • Watson Marketing Insights
  • dW Answers Help
  • dW Premium
  • developerWorks Sandbox
  • developerWorks Team
  • Watson Health
  • More
  • Tags
  • Questions
  • Users
  • Badges