Title: [267542] trunk/Tools
Revision
267542
Author
[email protected]
Date
2020-09-24 12:08:17 -0700 (Thu, 24 Sep 2020)

Log Message

[results.webkit.org] Drop old archive chunks
https://bugs.webkit.org/show_bug.cgi?id=216936
<rdar://problem/69513686>

Unreviewed emergency infrastructure change.

* Scripts/libraries/resultsdbpy/resultsdbpy/__init__.py: Increment package version.
* Scripts/libraries/resultsdbpy/resultsdbpy/model/cassandra_archiver.py:
(CassandraArchiver.ArchiveChunks): Changer archive chunk table.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (267541 => 267542)


--- trunk/Tools/ChangeLog	2020-09-24 18:32:53 UTC (rev 267541)
+++ trunk/Tools/ChangeLog	2020-09-24 19:08:17 UTC (rev 267542)
@@ -1,3 +1,15 @@
+2020-09-24  Jonathan Bedard  <[email protected]>
+
+        [results.webkit.org] Drop old archive chunks
+        https://bugs.webkit.org/show_bug.cgi?id=216936
+        <rdar://problem/69513686>
+
+        Unreviewed emergency infrastructure change.
+
+        * Scripts/libraries/resultsdbpy/resultsdbpy/__init__.py: Increment package version.
+        * Scripts/libraries/resultsdbpy/resultsdbpy/model/cassandra_archiver.py:
+        (CassandraArchiver.ArchiveChunks): Changer archive chunk table.
+
 2020-09-24  Carlos Garcia Campos  <[email protected]>
 
         [GTK][WPE] Move proxy settings from WebKitContext to WebKitWebsiteDataManager

Modified: trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/__init__.py (267541 => 267542)


--- trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/__init__.py	2020-09-24 18:32:53 UTC (rev 267541)
+++ trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/__init__.py	2020-09-24 19:08:17 UTC (rev 267542)
@@ -43,6 +43,6 @@
         "Please install webkitcorepy with `pip install webkitcorepy --extra-index-url <package index URL>`"
     )
 
-version = Version(1, 0, 1)
+version = Version(1, 0, 2)
 
 name = 'resultsdbpy'

Modified: trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/cassandra_archiver.py (267541 => 267542)


--- trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/cassandra_archiver.py	2020-09-24 18:32:53 UTC (rev 267541)
+++ trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/cassandra_archiver.py	2020-09-24 19:08:17 UTC (rev 267542)
@@ -34,7 +34,7 @@
     # According to https://cwiki.apache.org/confluence/display/CASSANDRA2/CassandraLimitations, we should shard
     # large data blobs.
     class ArchiveChunks(Model):
-        __table_name__ = 'archive_chunks_02'
+        __table_name__ = 'archive_chunks_03'
         digest = columns.Text(partition_key=True, required=True)
         index = columns.Integer(primary_key=True, required=True)
         chunk = columns.Blob(required=True)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to