The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

Lease mismatch LeaseExpiredException

I have seen some posts on this topic, but I could not figure the fix to my problem. I am using Hadoop version Hadoop 2.0.0-cdh4.2.0, and java version "1.7.0_09-icedtea". I am running a program that ...
-1
votes
0answers
54 views

Apple's 50million app countdown [closed]

I am seeing a lot of custom JS in the http://www.apple.com/itunes/50-billion-app-countdown/ counter, and wondering what the best open-source counter that matches this old school ticker functionality ...
0
votes
1answer
24 views

Rumen and custom counters

I am using Rumen to extract information from the job history to .json format. This works fine for default counters and params. However, I could not see the custom counters that I have added to my ...
1
vote
2answers
40 views

jQuery Counter Begins to Increment on Scroll but Won't Stop at Max Value

I have a counter on my page that is using the following code: $(window).scroll(function(){ if ($(window).scrollTop() > 1400) { var max = 67; incCounter(); ...
0
votes
1answer
44 views

js word counter - when refreshing the page the counter goes back to original count

Whenever someone refreshes my page or submits the form on the page (and there is an error), the word counter goes back to the original amount of characters. I have a word counter in my form for a ...
1
vote
2answers
44 views

loop with two counters

Following is some C code. How do I do the same in sas? For(i=30, j=1; i<=41, j<=12; i++, j++) ( closure(i,j) /*calling function with input parameters I and j */ ); I basically ...
0
votes
0answers
19 views

HCPerfCurrentCount vs counter 64

i have one basic question. Anyone please explain difference between HCPerfCurrentCount vs counter 64. HCPerfCurrentCount defined in HC-PerfHist-TC.mib i know counter 64 is an unsigned long. my ...
1
vote
1answer
75 views

Cassandra distinct counting

I need to count bunch of "things" in Cassandra. I need to increase ~100-200 counters every few seconds or so. However I need to count distinct "things". In order not to count something twice, I am ...
0
votes
1answer
21 views

Multiple “like” counters on the same page using knockout.js

I'm new to knockout and having problems creating multiple "like" button counters on the same page. Here's my code. <ul> <li> <h4>Item 1</h4> ...
-3
votes
3answers
156 views

if counter reaches max count counter++ else counter = 0 in javascript

okay so i want if my counter reaches the maximum count, it starts over, with the default counter number which is 0 here is my code: var picCount = 0; // global var maxCount = 4; //Pictures, to add ...
0
votes
0answers
137 views

detection memory leak using GetProcessMemoryInfo

I am trying to use the field PrivateUsage of the structure PROCESS_MEMORY_COUNTERS_EX to detect memory leak. I suppose that the value of PrivateUsage should be same before and after I call one ...
2
votes
1answer
211 views

How do I see linux kernel SNMP counters?

The kernel has a bunch of SNMP counters it increments under various situations, and I want to get the current values on my system. I found nstat, but that does not show all the counters (even with the ...
0
votes
1answer
60 views

Suggestions to implement an automatic counter in Python

In Tex, we have the count variables that get automatically updated each time there is a call to reference, that way the figure counter goes up automatically. I wanted to do something similar in ...
0
votes
1answer
124 views

Cassandra increment counters with 1 update?

When I update a row with a few counters columns in that row I need to do: mutator.incrementCounter(rowid1, "cf1", "counter1", value); mutator.incrementCounter(rowid1, "cf1", "counter2", value); ...
1
vote
2answers
94 views

How to efficiently store multiple different counter values on a user in a MySQL based application?

I want to store different kinds of counters for my user. Platform: Java E.g. I have identified: currentNumRecords currentNumSteps currentNumFlowsInterval1440 currentNumFlowsInterval720 ...
0
votes
3answers
54 views

Counter Stays at Zero

I must be missing something here. I've created counter after counter and they all work, but in this code below the counter i always stays at zero. The mapDelays count correctly shows 18. The idea is ...
1
vote
1answer
123 views

Counter app with local storage

I am working on a counter app that uses mustache.js to create multiple counters and remembers your data using local storage. You simply click the '+' button to add a new counter, and hit the add ...
1
vote
1answer
133 views

Jquery Countup Until Next Monday and total Mondays from defined date until todays date

I'm trying to code a count up that show how many MONDAYS we had from a specific date. For example since 10/01/2012 we had 4 mondays until today October 25. This first step I could achieve with some ...
1
vote
2answers
96 views

PHP and Javascript System to count that I adds +1 to random

I created a system in php and javascript in which a user can enter a certain number of characters (5) and automatically update a cell in a db in mysql, but there is a problem ... every now and then ...
1
vote
1answer
207 views

How to increment a hadoop counter from outside a mapper or reducer?

I want to add something to the hadoop counters from outside a mappper. So, I want to access the getCounter on context object like this: context.getCounter(counter, key).increment(amount) I'm not ...
0
votes
1answer
93 views

How to track lots of statistics with map-reduce cascading?

I have a series map-reduce jobs to process user data (implemented using the Cascading framework), and I would like to track lots of fine-grained statistics (I can have between 100 and 1000 users and ...
0
votes
0answers
84 views

Performance of WCF web service

I've configured a WCF web service (.NET 3.5) to monitor counters using sitescope. This creates a warning when the main service call exceeds some predefined threshold. I'm trying to figure out the ...
0
votes
3answers
157 views

Character Counter from “The C Programming Language” Not Working As I Expected

I am reading through "The C Programming Language", and working through all the exercises with CodeBlocks. But I cannot get my character counter to work, despite copying it directly from the book. The ...
0
votes
0answers
103 views

Getting network interface counters in Windows most efficiently using C/C++

If I want to plot a high resolution throughput graph for a list of network interfaces, whats the fastest way to get the counters? The graph needs as high resolution as possible so I would guess I ...
0
votes
3answers
58 views

How do I keep and update a persistent variable in a sinatra app on heroku

I have a very small sinatra app. it basically redirects to google search. I deployed it on heroku.I wanted to track the amounts of hits it got, so I added a "hits" variable and had it update every ...
0
votes
0answers
18 views

No results quering Performance Data with network counters

when Writing Performance Data to a Log File this example from Microsoft written in c: http://msdn.microsoft.com/en-us/library/windows/desktop/aa373228%28v=vs.85%29.aspx worked with the counter ...
1
vote
1answer
204 views

PAPI performance counters issues on a AMD Opteron 6172

I've been trying to analyze certain applications(written in C) with performance counters on a AMD Opteron 6172 processor, running Red Hat Enterprise Linux Workstation release 6.2 (Santiago). I'm ...
1
vote
4answers
424 views

Incrementing hundreds of counters at once, redis or mongodb?

Background/Intent: So I'm going to create an event tracker from scratch and have a couple of ideas on how to do this but I'm unsure of the best way to proceed with the database side of things. One ...
0
votes
2answers
333 views

Hadoop - detect last record of the input split

I have a MapReduce job, whose map tasks use TextInputFormat. I would like to be able to know, in the map function, when the end of the split is reached (i.e. the last record has just been passed to ...
0
votes
0answers
74 views

Hardware Performance Counters using C [duplicate]

Possible Duplicate: Hardware performance counter APIs for Windows I need some C sample code which retrieves the values of hardware performance counters.I referred PAPI API's but it doesn't ...
0
votes
1answer
111 views

Sharing counter values between MapReduce mappers

I have a mapper that reads input and writes to a database. I want to limit how many inputs are actually converted and written to that database, and all mappers must contribute to the limit and then ...
2
votes
2answers
132 views

Need to count the number of line breaks

I'm using this code to make breaks in a XML string every 150 characters. <xsl:variable name="val_cr_ln" select=" '&#xA;' " /> I need to do a count of each time this variable occurs. Can ...
2
votes
1answer
207 views

Nested css counters with leading zeros

Is it possible to combine the css counters() function with leading zeros, producing a list such as this: Item 01 Item 01.01 Item 01.02 Item 01.02.01 Leading zeros are possible using ...
10
votes
2answers
925 views

Line Numbers every nth Line with CSS Counters?

This is my first post here and I hope it flies (apologize for the length). I had to cut out certain referring links (italicized) as I don't have enough reputation yet, but can perhaps replace them ...
4
votes
5answers
182 views

scheme functions that “remember” values with let/set

I'm new to Scheme and trying to understand how certain values that appear within a function can persist across multiple uses. Take the following counter: (define count (let ((next 0)) (lambda ...
1
vote
2answers
272 views

Is there a Python time-based counter library for Redis?

I'm looking to store time-based counters using Redis, in a Python project. I want to store cumulative rolling counters for various events occurring in recent time periods (1, 5, 15, 30, 60 minutes or ...
2
votes
2answers
420 views

Managing counters in c++ using CQL prepared queries

Reposting actual code // cassandra is a connected org::apache::cassandra::CassandraClient // statement is a CqlPreparedResult // result is a CqlResult // CF declaration is: /* CREATE COLUMNFAMILY ...
0
votes
1answer
131 views

How do I write CSS selectors with CSS Counters to apply formatting to a specific element?

I'm creating a Table of Contents in HTML/CSS using CSS Counters, and nested OLs, which works great. Now, I want to set a class "toc" on the top level OL (because there are more OLs on the page than ...
0
votes
1answer
202 views

Hadoop grep search output - job counters

I am currently running a hadoop cluster with 6 nodes 1 master and 5 slaves. The master does not have any tasktracker/datanode running in it. I am running grep and trying to read the output logs. I am ...
1
vote
1answer
293 views

Are there any Ruby clients for Cassandra with counters and supercolumn?

Are there any Ruby clients for Cassandra with support of counters and supercolumns? 1) gem cassandra doesn't support counters 2) gem cassandra-cql doesn't support supercolumns (cql doesn't support ...
2
votes
1answer
297 views

RawFraction performance counters in c#

I am having issues using the RawFraction performance counter in my project. All I want is to show a simple fraction of totalActionType1/totalActions. So totalActions is my Rawbase counter and ...
1
vote
1answer
201 views

Accessing MapReduce configuration/statistics for logging and analysis

We're working on gathering statistics from our map reduce jobs. We're going to use counters for some things but I wonder if there's some way to access the statistics on the Web UI, such as rows ...
0
votes
1answer
807 views

Managing counters in large map/reduce applications

I have several, similar map/reduce jobs with divergent counter names and different getCounter() conventions. Is there an effective, idiomatic hadoop way for managing the uniform use of counter ...
3
votes
1answer
333 views

How to get sorted counters from Cassandra

I have a row of counters and I want to get its' columns sorted by values. Is there any strategies or data models for that?
0
votes
1answer
237 views

How to use PAPI periodically for performance measurements

I want to analyze system's performance for my application using PAPI api in C. The general structure is that -- Initialize PAPI -- Initialize counters of interest -- start counters -- run ...
-1
votes
4answers
60 views

web counters in files?

How do I store counters in php script without DB? Always was using DB but now I want simpler configuration... Using files seems to be problematic due to file locks. Let's say that there are many ...
0
votes
1answer
80 views

trying to count the number of times something comes up on a dice. ruby code

This is my code for a dice that shows a direction. It shows either north, south, east or west when rolled. I'm trying to figure out a way to count how many times each one of these appears anytime I ...
3
votes
3answers
272 views

Is there a way to “set” Hadoop Counter instead of incrementing it?

API only provides methods to increase a counter in Mapper or Reducer. Is there a way to just set it? or increment it's value only once irrespective of the number of times mappers and reducers are run. ...
0
votes
4answers
425 views

Printing counters in nested loops

I'm trying to concatenate counters in nested loops, with the inner loop having a smaller maximum, such that my output should read: 1.1 1.2 1.3 1.4 2.1 2.2 2.3 2.4.... Where the inner loop is ...
2
votes
1answer
419 views

Web application Load Tests: What counters to look at?

During a stress/load test of a ASP.NET app hosted in IIS, what should I be monitoring on the app server? For example, the built in utility performance monitor in windows has a huge list of counters ...

1 2