File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ scribe-server-hdfs-orig (0.2.4-1) lucid; urgency=low
2+
3+ * Don't Write Scribe_stats file even when the setting contains to write it, since append is disabled in HDFS
4+
5+ -- Platform Engineering <
[email protected] > Wed, 25 Jul 2012 17:57:45 +0530
6+
17scribe-server-hdfs-orig (0.2.3-1) lucid; urgency=low
28
39 * change flush to HFlush which calls sync for hadoop to flush all changes to disk at max_write_size intervals
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ void FileStoreBase::printStats() {
542542 return ;
543543 }
544544
545- time_t rawtime = time (NULL );
545+ /* time_t rawtime = time(NULL);
546546 struct tm timeinfo;
547547 localtime_r(&rawtime, &timeinfo);
548548
@@ -556,7 +556,7 @@ void FileStoreBase::printStats() {
556556 msg << " wrote <" << currentSize << "> bytes in <" << eventsWritten
557557 << "> events to file <" << currentFilename << ">" << endl;
558558
559- stats_file->write (msg.str ());
559+ stats_file->write(msg.str());*/
560560 stats_file->close ();
561561}
562562
You can’t perform that action at this time.
0 commit comments