Commit graph

8212 commits

Author SHA1 Message Date
Souhaila Noor
f7fc380bcd split aws commands to allow for better error handling 2021-11-22 13:14:58 -06:00
Souhaila Noor
a32a217dbd test error condition 2021-11-22 12:10:42 -06:00
Souhaila Noor
55d35365c6 allow failure for ec2 node job 2021-11-22 10:53:42 -06:00
souhailanoor
15877b897e
Merge pull request #1782 from molecula/decreaseTimeForCICD
Decrease sleep time for gitlab CICD pipeline
2021-11-19 15:05:48 -06:00
Souhaila Noor
2cde034e82 testing reviewer's suggestion 2021-11-19 14:40:37 -06:00
souhailanoor
5d7469c519
Merge branch 'master' into decreaseTimeForCICD 2021-11-19 13:47:57 -06:00
Matthew Jaffee
0614665a29
Merge pull request #1781 from molecula/remove-cloudbuild
remove unused .cloudbuild directory (was for GCP CI stuff)
2021-11-19 13:41:20 -06:00
souhailanoor
99e50c25aa
Merge branch 'master' into decreaseTimeForCICD 2021-11-19 13:19:10 -06:00
Souhaila Noor
c83170f1f0 decrease sleep time 2021-11-19 13:16:48 -06:00
Matthew Jaffee
a02a8a94b3 remove unused .cloudbuild directory (was for GCP CI stuff) 2021-11-19 12:50:40 -06:00
tgruben
aecc6547c0
Merge pull request #1779 from molecula/FB-972-query
[FB-972] Random query and load tester
2021-11-19 12:48:20 -06:00
tgruben
df9ba3d2db
Merge branch 'master' into FB-972-query 2021-11-19 12:33:02 -06:00
Todd Gruben
5c5e16af33 added a generate only flag 2021-11-19 12:26:23 -06:00
Todd Gruben
f4a40e79b9 final cleanup 2021-11-19 12:08:24 -06:00
Matthew Jaffee
f6e9b6ab40
Merge pull request #1762 from molecula/clean-up-top-level
remove outdated files at top level
2021-11-19 11:53:01 -06:00
Todd Gruben
989f9c3f48 applied suggestions 2021-11-19 11:29:17 -06:00
Matthew Jaffee
25e5c6f5fb remove references to CONTRIBUTING and CHANGELOG 2021-11-19 11:22:15 -06:00
Todd Gruben
b12f00db59 changed default seed to current time 2021-11-19 10:57:36 -06:00
Matthew Jaffee
f7b4f621a1 remove references to LICENSE and checks for it in source files 2021-11-19 10:38:06 -06:00
Todd Gruben
1089435218 add check for index presence 2021-11-19 09:48:45 -06:00
Todd Gruben
c72406819e added seed param 2021-11-19 09:40:39 -06:00
Matthew Jaffee
b3b11638a3 remove outdated files at top level
we're no longer Apache 2.0 licensed, or open source, so LICENSE and
CONTRIBUTING.MD are gone. We track the changelog elsewhere, so that
can go, and I don't think anyone has looked at the NOTES file in 3
years. I modified the NOTICE not to refer to the Apache license any
more.
2021-11-19 09:03:14 -06:00
Todd Gruben
de7af694fd Merge branch 'FB-972-query' of github.com:molecula/pilosa into FB-972-query 2021-11-19 05:17:22 -06:00
Todd Gruben
f6b3a81ac3 made duration minutes for query rate 2021-11-19 05:16:30 -06:00
tgruben
cbd7a4f30c
Merge branch 'master' into FB-972-query 2021-11-18 17:17:32 -06:00
nagamocha3000
ae95fa2a2a
Merge pull request #1778 from molecula/install
add config files for release
2021-11-19 02:02:25 +03:00
nm
3b92f9493d add config files for release 2021-11-19 01:26:18 +03:00
Todd Gruben
87ededd61e Modified random query to use vegeta library 2021-11-18 16:23:12 -06:00
souhailanoor
6623cbba8d
Merge pull request #1777 from molecula/fixEC2NodeBug
fix for ec2 ip filtering
2021-11-18 13:37:31 -06:00
souhailanoor
d8967dfb96
Merge branch 'master' into fixEC2NodeBug 2021-11-18 13:06:44 -06:00
seebs
8ae19b3c36
Merge pull request #1766 from molecula/fb1019
FB-1019: internal consistency errors in RBF
2021-11-18 12:57:41 -06:00
Souhaila Noor
4e3f31471c remove double quotes from variable name 2021-11-18 12:42:09 -06:00
Souhaila Noor
5d489198bd fixed apt install bug 2021-11-18 12:11:48 -06:00
Souhaila Noor
eb717f568d fix for ec2 ip filtering 2021-11-18 11:49:38 -06:00
Seebs
9c0c0ec8c1 There are two related bugs here.
First, it is possible for us to end up allocating *or freeing* pages during
a modification of the free list, in a way such that the change to the free list
means that when we finish the modification which caused the allocate or free,
we've overwritten the inner change.

Second, when deallocating trees, we don't actually deallocate the branch nodes
themselves.

The former causes potentially severe data corruption. The latter causes us
to gradually leak pages in a way that we don't notice because we only run those
tests during the RBF tests.

The fix for this is surprisingly intricate, because of the counterintuitive
fact that *allocating* a page means *removing* things from the free list
(and thus potentially deallocating free list pages), while *freeing* a page
means *adding* things to the free list (and thus potentially needing to
allocate pages for the free list).

While modifying the free list, any allocations we need always just come from
the end of the file; we don't try to reuse free pages. If a page becomes
*deallocated* by a free list modification, we don't annotate it in the free
list at the instant that it happens; we stash that information until the
current modification of the free list happens, then iterate through any
such pages.

I am pretty sure there's virtually never more than one, and I don't actually
know that I can create a case wherein we'd end up with the nested case
firing, wherein removing a page from the free list causes us to remove another
page, but I think if the free list got large and cluttered and needed
rebalancing or something it could maybe happen.
2021-11-18 10:05:55 -06:00
Seebs
a38c219cf3 Add test for RBF failures
This test case triggers a failure in RBF, it's a separate patch to
make it easier to see the failure.
2021-11-18 10:05:54 -06:00
reese
db99b83bb2
Merge pull request #1772 from molecula/sup-102
[SUP-102] fix presentation of timestamps in Groupby, Distinct calls from psql client
2021-11-17 13:15:16 -06:00
reesporte
ea96c10114 fix typo 2021-11-17 09:10:50 -06:00
reesporte
6419a87797 use util function for formatting timestamp 2021-11-17 09:07:08 -06:00
reesporte
f8e93871c0 refactor safeCopy to pure function and add unit test 2021-11-17 08:51:28 -06:00
reesporte
7390ae072d Merge branch 'master' into sup-102 2021-11-17 08:11:03 -06:00
seebs
2e0b5cb55b
Merge pull request #1774 from molecula/fbholder
unbreak featurebase holder subcommand
2021-11-16 15:18:06 -06:00
reesporte
1cc6a87d20 refactor and add test 2021-11-16 14:53:30 -06:00
Seebs
dcab1a6708 unbreak featurebase holder subcommand
The "just open the holder" subcommand doesn't work the way it used
to, because now that we rely on etcd to open a holder, trying to open
a holder without things set up just coredumps.

Step 1: Fix that.
Step 2: Also add a test that covers it so we don't get bitrotted again.
Step 3: Remove an unrelated stale comment that doesn't deserve its
own commit log, having to do with an option that no longer exists
which is no longer being set right under the comment saying we set it.
2021-11-16 14:23:35 -06:00
tgruben
7ee343c8fa
Merge pull request #1773 from molecula/fix-ci
Added back code coverage
2021-11-16 12:32:03 -06:00
Todd Gruben
4c966dee22 removed filter 2021-11-16 12:08:46 -06:00
reesporte
9e041803fb add license 2021-11-16 09:20:44 -06:00
reesporte
da783d97ef add test for pgWriteDistinctTimestamp 2021-11-16 09:14:15 -06:00
reesporte
24051111b6 Merge branch 'sup-102' of github.com:molecula/featurebase into sup-102 2021-11-15 17:15:51 -06:00
reesporte
9bbd946ac5 update test to ignore FieldOptions field 2021-11-15 17:15:44 -06:00