Commit Graph

56485 Commits

Author SHA1 Message Date
Kostia Balytskyi
c058e72f48 mononoke: migrate filestore's rechunk API to async/await
Summary: A little step towards asyncifying the filestore. This is just mechanical, without removing clones. TBD: add a diff, which starts to actually use the benefits of new futures.

Reviewed By: farnz

Differential Revision: D20534272

fbshipit-source-id: a038e6f22b666f3f2c9782ee25c0c2582ddced6c
2020-03-19 09:24:30 -07:00
James Crooks
d2f5062182 Move fbcode/eden/mononoke/cmds/populate_healer.rs to async diff4
Summary:
Last diff. Fully migrates all of populate_healer.rs to async/await
futures.  This makes `put_resume_state()` async, with one `.compat()` call needed
for dealing with `manifold.put()`. Also changes `populate_healer_queue()` to
use the new async `put_resume_state()`. At this point, the only `.compat()`
calls remaining are for interop with ThrifManifoldBlob's interface, and can be
removed once ThriftManifoldBlob is updated or provides async replacement
functions. All explicit old-style future creation sites have been removed in
favor of 0.3 futures.

Reviewed By: krallin

Differential Revision: D20479264

fbshipit-source-id: baad535da3fc8b621d72de567454bcd64862977a
2020-03-19 09:16:25 -07:00
James Crooks
7ecd298e7b Move fbcode/eden/mononoke/cmds/populate_healer.rs to async diff3
Summary: Moves to using 0.3 futures inside of the populate_healer_queue() function. This leaves only one remaining source of `.compat()` calls inside of populate_healer.rs, which will be removed in the following diff.

Reviewed By: krallin

Differential Revision: D20473834

fbshipit-source-id: 6d76e0673b875fba15611a495d86b9ca0b1695db
2020-03-19 09:16:25 -07:00
Stanislau Hlebik
107d049cf9 mononoke: fix some of the suggestions from clippy
Summary:
Run buck build -c rust.clippy=true eden/mononoke/:mononoke#check and fix some
of them manually. I wasn't able to make rustfix to work - will try to see
what's wrong and run it.

The suggestions looks non-controversial

Reviewed By: krallin

Differential Revision: D20520123

fbshipit-source-id: 25d4eb493f2363c5aa77bdb3876da4378483f6cb
2020-03-19 06:06:10 -07:00
Kostia Balytskyi
95b17f1d4d mononole: migrate filestore's test_api to fbinit::compat_test
Summary: This makes thigs a little more readable.

Reviewed By: krallin

Differential Revision: D20515645

fbshipit-source-id: ae04e18b0f415353431a995ae22844f6e301780c
2020-03-19 05:20:45 -07:00
Kostia Balytskyi
04406a7e3c mononoke: fix a typo
Reviewed By: krallin

Differential Revision: D20470561

fbshipit-source-id: 3f8072570dc652df952f4e6c79b07dff3fa5fe2b
2020-03-19 05:20:44 -07:00
Kostia Balytskyi
96cba6e4dc mononoke: introduce rechunk_if_needed fn to the filestore
Summary:
This is going to be used in D20469131, but in a nutshell the idea is to
perform as many checks as possible before actually doing the rechunking.
This way we can avoid churning through the entire blobstore.

Reviewed By: krallin

Differential Revision: D20491189

fbshipit-source-id: 4f7c2a8e02c890db789d25aa819b5c91d08ea7be
2020-03-19 05:20:44 -07:00
Thomas Orozco
01c05f5925 mononoke/hgproto: zero copy-validation (120x faster on 70MiB Gettreepack)
Summary:
The way decoders work in Tokio is that they get repeatedly presented whatever
is on the wire right now, and they have to report whether the data being
presented is valid and they'd like to consume it (and otherwise expect Tokio to
provide more data).

It follows that decoders have to be pretty fast, because they will be presented
a bunch of data a bunch of times. Unfortunately, it turns out our SSH Protocol
decoder is everything but.

This hadn't really been a problem until now, because we had ad-hoc decoding for
things like Getpack that might have a large number of parameters, but for now
the designated nodes implementation is decoded in one go through the existing
Gettreepack decoder, so it is important ot make the parsing fast (not to
mention, right now, we buffer the entire request for Getpack as well ... so
maybe we could actually update it to this too!).

Unfortunately, as I mentioned, right now the parsing wasn't fast. The reason is
because it copies parameters to a `Vec<u8>` while it decodes them. So, if
you start decoding and copying, say, 50MB of arguments, before you find out
you're missing a few more bytes, then you just copied 50MB that you need to
throw away.

Unfortunately, the buffer size is 8KiB, so if we say "I need more data", we get
8KiB. That means that if we want to decode a 70MiB request, we're going to make
8960 ( = 70 * 1024 / 8) copies of the data (the first 8KiB, then the first 16,
and so on), which effectively means we are going to copy and throw away ~612GiB
of data (8960 * 70 / 2). That's a lot of work, and indeed it is slow.

Fortunately, our implementation is really close to doing the right thing. Since
everything is length delimited, we can parse pretty quick if we don't make
copies: all we need to do is read the first length, skip ahead, read the second
length, and so on.

This is what this patch does: it extracts the parsing into something that
operates over slices. Then, **assuming the parsing is successful** (and that is
the operative part here), it does the conversion to an owned Vec<u8>.

In O(X) terms .. this means the old parsing is O(N^2) and the new one is O(N).

I actually think we could take this one step further and do the conversion even
later (once we want to start decoding), but for now this is more than fast
enough.

After this patch, it takes < 1 second to parse a 70MiB Gettreepack request.
Before this patch, it took over 2 minutes (which is 3 times longer than it
takes to actually service it).

PS: While in there, I also moved the `gettreepack_directories` function to a
place that makes more sense, which I had introduced earlier in the wrong place
(`parse_star`, `parse_kv` and `params` are a group of things that go together,
it's a bit clowny to have `gettreepack_directories` in the middle of them!).

Reviewed By: kulshrax

Differential Revision: D20517072

fbshipit-source-id: 85b10e82768bf14530a1ddadff8f61a28fdcbcbe
2020-03-19 04:31:23 -07:00
svcscm
e69973e62d Updating submodules
Summary:
GitHub commits:

1b37794ff8

Reviewed By: wittgenst

fbshipit-source-id: ff8d72e6e8b3ff68a8c37ca867fc3236f4d18917
2020-03-19 04:31:22 -07:00
svcscm
d118dc85d4 Updating submodules
Summary:
GitHub commits:

ef157d4f41
d462322b1e
86727df12a

Reviewed By: wittgenst

fbshipit-source-id: 9fd53212430404c12ba07c954d3c142828d4167b
2020-03-19 01:58:42 -07:00
Arun Kulshreshtha
431a9c02b5 mercurial_types: rename Node to HgId
Summary: The `Node` type in Mercurial's Rust code was renamed to `HgId`, with an alias to `Node` to keep older code building. Let's rename the usages in Mononoke to `HgId` to reduce ambiguity and keep the terminology consistent with Mercurial.

Reviewed By: StanislavGlebik

Differential Revision: D20460543

fbshipit-source-id: f6d8e3aef42743370323cde79ec10b21de956313
2020-03-19 01:43:12 -07:00
Stanislau Hlebik
bf866d3a21 mononoke: log how many filenodes were inserted
Summary:
It was (or rather, might have been) useful during debugging of S197766.
Let's now count both "count" (i.e. how often the method was called)
and count how many filenodes were inserted

Reviewed By: krallin

Differential Revision: D20519701

fbshipit-source-id: f19f413171fcbcc300deffbe29baa946ebbe8dce
2020-03-19 01:22:23 -07:00
svcscm
ad42aee4cc Updating submodules
Summary:
GitHub commits:

7be4309f89
b331064b7c
1fb58e14c7

Reviewed By: wittgenst

fbshipit-source-id: a7a787dda67ed01744c7e76eeb6b94ab18c5a849
2020-03-19 01:22:23 -07:00
svcscm
cd854340a4 Updating submodules
Summary:
GitHub commits:

16e810d342
42e49bb262

Reviewed By: zpao

fbshipit-source-id: ed10e85c6f659b488aff2c7fbf21b0a34657cc18
2020-03-18 21:43:25 -07:00
Johann Steinbrecher
a2530a1bcb Deprecate rust-crypto in eden/mononoke/repo_client
Reviewed By: jsgf

Differential Revision: D20428696

fbshipit-source-id: 1d38512d1988ecb66a2b46f967737d8df3b6aabb
2020-03-18 19:34:38 -07:00
svcscm
45510e8302 Updating submodules
Summary:
GitHub commits:

c7d31e8210
20d785d777
217ce20021
259f7fc79e
4946218386

Reviewed By: zpao

fbshipit-source-id: 63075a64d5840e63c8a09170f2e56a6817a8bda0
2020-03-18 18:51:25 -07:00
Arun Kulshreshtha
1e698d4aaf treemanifest: add ondemandfetch parameter to _gettrees
Summary: Based on comments on D20382825, we need to make sure that `_gettrees()` knows for sure whether on-demand tree fetching is in use in order to properly identify missing nodes in the response.

Reviewed By: quark-zju

Differential Revision: D20520439

fbshipit-source-id: ffa6d62dbe8b6f641b1dacebcb6f94ceae714c1b
2020-03-18 18:24:41 -07:00
svcscm
1bbf120f49 Updating submodules
Summary:
GitHub commits:

00c84e07b5
c28e7deff2
bbf1e7a9d6

Reviewed By: zpao

fbshipit-source-id: 930e21c3c66a9f11ed1a5bebb72f7f2f9fecb7a0
2020-03-18 16:20:45 -07:00
Dan Forest
59c4761872 clean API naming + make fbwhoami refreshable
Summary: 'new' is not very explicit with the fact that things are not refreshed.

Reviewed By: dtolnay

Differential Revision: D20356129

fbshipit-source-id: ff4a8c6fe4c34e93729c902e4b41afbe3c9deca1
2020-03-18 15:52:18 -07:00
Jun Wu
8cc30ac302 dag: add Segment::new API
Summary:
Now Segment has no lifetime we can create it directly and return the ownership.

Performance of "building segments" does not seem to change:

  # before
  building segments                                 750.129 ms

  # after
  building segments                                 712.177 ms

Reviewed By: sfilipco

Differential Revision: D20505200

fbshipit-source-id: 2448814751ad1a754b90267e43262da072bf4a16
2020-03-18 15:05:58 -07:00
Jun Wu
1bd54a5971 dag: drop lifetime on Segment<'a>
Summary:
This allows structures like BTreeMap to own and store Segment.

It was not possible until D19818714, which adds minibytes::Bytes interface for
indexedlog.

In theory this hurts performance a little bit. But the perf difference does not
seem visible by `cargo bench --bench dag_ops`:

  # before
  building segments                                 714.420 ms
  ancestors                                          54.045 ms
  children                                          490.386 ms
  common_ancestors (spans)                            2.579 s
  descendants (small subset)                        406.374 ms
  gca_one (2 ids)                                   161.260 ms
  gca_one (spans)                                     2.731 s
  gca_all (2 ids)                                   287.857 ms
  gca_all (spans)                                     2.799 s
  heads                                             234.130 ms
  heads_ancestors                                    39.383 ms
  is_ancestor                                       113.847 ms
  parents                                           251.604 ms
  parent_ids                                         11.412 ms
  range (2 ids)                                     117.037 ms
  range (spans)                                     241.156 ms
  roots                                             507.328 ms

  # after
  building segments                                 750.129 ms
  ancestors                                          53.341 ms
  children                                          515.607 ms
  common_ancestors (spans)                            2.664 s
  descendants (small subset)                        411.556 ms
  gca_one (2 ids)                                   164.466 ms
  gca_one (spans)                                     2.701 s
  gca_all (2 ids)                                   290.516 ms
  gca_all (spans)                                     2.801 s
  heads                                             240.548 ms
  heads_ancestors                                    39.625 ms
  is_ancestor                                       115.735 ms
  parents                                           239.353 ms
  parent_ids                                         11.172 ms
  range (2 ids)                                     115.483 ms
  range (spans)                                     235.694 ms
  roots                                             506.861 ms

Reviewed By: sfilipco

Differential Revision: D20505201

fbshipit-source-id: c34d48f0216fc5b20a1d348a75ace89ace7c080b
2020-03-18 15:05:57 -07:00
Durham Goode
ba122de053 tests: remove platform condition in eolfilename
Summary: Now that we sort the errors, we don't need this condition anymore.

Reviewed By: xavierd

Differential Revision: D20517578

fbshipit-source-id: 7012de387ee8acee1c1b630991f3a289a3fa48d1
2020-03-18 13:59:35 -07:00
svcscm
a2eec0f3e7 Updating submodules
Summary:
GitHub commits:

59d4d94f07
658783cd67
186b9b0d1e
eeb7fb01e3

Reviewed By: zpao

fbshipit-source-id: 83036ae89d7e0377866ae2b551eac694a111b79d
2020-03-18 13:26:02 -07:00
Jun Wu
09e92a8d32 fscap: add osxfuse_eden
Summary:
EdenFS is reported as `osxfuse_eden` on OSX after D20313385.
Update the fscap table to avoid slow paths testing fs capabilities.

Without this diff, churns on edenfs OSX will trigger undesirable watchman
events.

Reported by: fanzeyi

Reviewed By: fanzeyi

Differential Revision: D20518902

fbshipit-source-id: 2e8e472df16d08b17834b2c966c065bbaad052fe
2020-03-18 13:14:19 -07:00
Thomas Orozco
956c768095 mononoke/repo_client: add telemetry for designated nodes
Summary:
Now that Arun is about to roll this out to the team, we should get some more
logging in place server side. This updates the designated nodes handling code
to report whether it was enabled (and log prior to the request as well).

Reviewed By: HarveyHunt

Differential Revision: D20514429

fbshipit-source-id: 76ce62a296fe27310af75c884a3efebc5f210a8a
2020-03-18 12:57:34 -07:00
svcscm
845b28e870 Updating submodules
Summary:
GitHub commits:

a83730bad7
1f4ffda4d8

Reviewed By: zpao

fbshipit-source-id: 844ea354e44b63f6f3a67555af381580dde2aa76
2020-03-18 12:49:09 -07:00
Xavier Deguillard
db310fc87f revisionstore: replace lazy_init with once_cell
Summary:
The later is what is now recommended, and no longer requires a macro to
initialize a lazy value, leading to nicer code.

Reviewed By: DurhamG

Differential Revision: D20491488

fbshipit-source-id: 2e0126c9c61d0885e5deee9dbf112a3cd64376d6
2020-03-18 12:20:12 -07:00
svcscm
12a1d1c761 Updating submodules
Summary:
GitHub commits:

5c4e6238a4
8ad4b32c5d

Reviewed By: zpao

fbshipit-source-id: 23d10c439f7a87d4e5c61798a94b4fe620596826
2020-03-18 12:20:11 -07:00
svcscm
21581c9301 Updating submodules
Summary:
GitHub commits:

daa5f0c1f5

Reviewed By: zpao

fbshipit-source-id: 048d4e62a491bf92b2fc9717f83d9c4b8df14b6f
2020-03-18 11:14:52 -07:00
Xavier Deguillard
9c8633bb0a revisionstore: address clippy warnings
Summary:
Lots of different warnings on this one. Main ones were:
 - One bug where .write was used instead of .write_all
 - Using .next instead of .nth(0) for iterators,
 - Using .cloned() instead of .map(|x| x.clone())
 - Using conditions as expressions instead of mut variables
 - Using .to_vec() on slices instead of .iter().cloned().collect().
 - Using .is_empty instead of comparing .len() against 0.

Reviewed By: DurhamG

Differential Revision: D20469894

fbshipit-source-id: 3666a44ad05e0fbfa68d490595703c022073af63
2020-03-18 10:16:39 -07:00
Xavier Deguillard
a760c0e672 edenapi: address clippy warnings
Reviewed By: DurhamG

Differential Revision: D20469646

fbshipit-source-id: 222f75196ef140c2e9bdfc0a0500f3fbcffb2309
2020-03-18 10:16:39 -07:00
Xavier Deguillard
121e524df9 blackbox: address clippy warnings
Reviewed By: DurhamG

Differential Revision: D20469649

fbshipit-source-id: 99b0e68259b5e2ed5b1c969d0a5fa8473e899f17
2020-03-18 10:16:39 -07:00
Xavier Deguillard
aae9075762 lz4-pyframe: address clippy warnings.
Reviewed By: DurhamG

Differential Revision: D20469648

fbshipit-source-id: 346c8a23ff2b4a895a066843ebe5341103956e76
2020-03-18 10:16:38 -07:00
Xavier Deguillard
8c1f033f50 indexedlog: address clippy warnings
Summary:
These were from a wide variety of warnings. The only one I haven't addressed is
that clippy complains that Pin<Box<Vec<u8>>> can be replaced by Pin<Vec<u8>>. I
haven't investigated too much into it, someone more familiar with this code can
probably figure out if this is buggy or not :)

Reviewed By: DurhamG

Differential Revision: D20469647

fbshipit-source-id: d42891d95c1d21b625230234994ab49bbc45b961
2020-03-18 10:16:38 -07:00
Vali Schneider
d94e0538f8 Deprecating rust-crypto in eden/mononoke
Summary: The rust-crypto library is being deprecated as it's unmaintained for almost four years now. Hence, it's being replaced with the RustCrypto (https://github.com/RustCrypto) library. In this case, the hashing function to be replaced is sha256.

Reviewed By: krallin

Differential Revision: D20227885

fbshipit-source-id: 15aff5f5e6a1df8a46b2be0b334155659cbc2ea4
2020-03-18 09:47:27 -07:00
Xavier Deguillard
42f1213efa util: address clippy warnings
Summary: The lifetime is unecessary.

Reviewed By: DurhamG

Differential Revision: D20452750

fbshipit-source-id: 184f5e109a0ff59931bdddaf611a7581d2255e78
2020-03-18 09:35:36 -07:00
Jun Wu
e48079180f indexedlog: fix a typo in benchmarks
Summary:
This belongs to D20149376. However buck test does not include benchmarks so it
was not noticed.

Reviewed By: DurhamG

Differential Revision: D20505097

fbshipit-source-id: 24daeb17b68808f8e69e18452ab2cf26c7aa10a7
2020-03-18 09:30:31 -07:00
Simon Farnsworth
d2cba5a169 Centralise hook running in the HookManager
Summary: We had hooks logic scattered around the place - move it all into the hooks crate, so that it's easier to refactor to use Bonsai changesets instead of hg.

Reviewed By: StanislavGlebik

Differential Revision: D20198725

fbshipit-source-id: fb8bdc2cdbd1714c7181a5a0562c1dacce9fcc7d
2020-03-18 09:17:17 -07:00
Simon Farnsworth
a908be34b3 Modernise hooks support
Summary: Migrate hooks to new futures and thus modern tokio. In the process, replace Lua hooks with Rust hooks, and add fixes for the few cases where Lua was too restrictive about what could be done.

Reviewed By: StanislavGlebik

Differential Revision: D20165425

fbshipit-source-id: 7bdc6820144f2fdaed653a34ff7c998913007ca2
2020-03-18 09:17:17 -07:00
Stanislau Hlebik
6744740f42 mononoke: log max bookmark staleness in warm bookmark cache to ods
Summary:
Let's log what's the current max staleness in warm bookmark cache. The staleness is reported by bookmark updaters using the timestamp from bookmark update log.

To do that I extended `live_updaters` to also include the state of the updater, which bookmark coordinator collects, extracts staleness and logs it to ods

Reviewed By: krallin

Differential Revision: D20468423

fbshipit-source-id: 7f9aacc2ab5bc62c2aed123b8a58d9fc6d49c63c
2020-03-18 07:46:36 -07:00
Stanislau Hlebik
4255de734f mononoke: introduce new warm bookmark cache logic
Summary:
We are planning to expand our usage of warm bookmark cache beyond scs server.
In particular we'd like to use it in mononoke server. But before we do that let's
make warm bookmark cache a bit more reliable and predictable.

In particular, let's make sure that slow update of a single bookmark doesn't
block progress of all other bookmarks - for example, we don't want to block
updating master if we have problems with a single release bookmark. See more
discussion about it in D20161458. [1]

In order to do that we now update every bookmark separately - bookmarks updater
job spawns updater for a single bookmark and makes sure there's no more than a
single updater for a given bookmark.

A few caveats:
1) After this diff we no longer preserve an order of updates of a bookmark i.e.
even if bookmark A was updated first then bookmark B, warm bookmark cache might
see updated in different order. We expect it to not matter much with the only
caveat being stable and master boomarks - it'd be weird to have stable being
descendant of master. This glitch should only happen for a very brief time
period of time, so hopefully it shouldn't matter in practice.

2) Current implementation doesn't stop single bookmark updaters if the main
updater was cancelled. TBH, I don't think it's necessary.

In the next diff I'll add ods counters to track the delay between warm bookmark cache and actual
values of bookmarks

[1] Previously we wanted to update bookmarks in bookmark update log order, but
we decided it's not a great idea. See D20161458 for more details.

Reviewed By: krallin

Differential Revision: D20335195

fbshipit-source-id: 0b1242faa1a9ef286929132c2350c299a2594467
2020-03-18 06:53:35 -07:00
svcscm
3eee2fba17 Updating submodules
Summary:
GitHub commits:

98851b238c
7e2a1f7e21
033714e632

Reviewed By: zpao

fbshipit-source-id: fdfa2451fedbbefcdc9fe19f1c2d4f3646cf693d
2020-03-18 06:53:35 -07:00
svcscm
2500c83487 Updating submodules
Summary:
GitHub commits:

8a3363fa85
b5dac7dced
bfadaf4985

Reviewed By: zpao

fbshipit-source-id: cc0b3a825f5cb01b424182343d853660898c6fc8
2020-03-18 04:36:30 -07:00
Kapil Kumar
18c6ad5b1a pushing compat one level down in upload_globalrevs.rs
Summary: Pushing compat one level down in main in upload_globalrevs

Reviewed By: krallin

Differential Revision: D20469436

fbshipit-source-id: 50abf7bb401f4c1d534080e8dc6e341b06e936a9
2020-03-18 04:18:24 -07:00
svcscm
3f6c2b2851 Updating submodules
Summary:
GitHub commits:

280d12fbb6

Reviewed By: zpao

fbshipit-source-id: 47d302daa531041aa28ba90d9545c81f5af4899b
2020-03-18 02:42:08 -07:00
svcscm
3e85d40962 Updating submodules
Summary:
GitHub commits:

15e1622e14
332e853e40

Reviewed By: zpao

fbshipit-source-id: c9b1206de63d731d028e1f3a545cdfc33bd02e58
2020-03-18 02:42:07 -07:00
svcscm
bf1a475c62 Updating submodules
Summary:
GitHub commits:

2ca4c388cf
02f07d0daf

Reviewed By: zpao

fbshipit-source-id: e4d95c2b3b0d2f04d6f563c65a1a451d749c39c6
2020-03-17 19:28:14 -07:00
Durham Goode
6e722132f6 filesystem: sort errors before printing them
Summary:
We see some hgbuild jobs failing because the order of errors is
different from what I see on my devserver. Let's sort them to make them stable.
This is presumably because we're operating in the order returned by readdir,
which is not guaranteed to be sorted.

Reviewed By: xavierd

Differential Revision: D20500566

fbshipit-source-id: bd4d3db1b77cd4bd7259f9bcc10bc65649fae7c6
2020-03-17 18:07:03 -07:00
Xavier Deguillard
20029d1bdc merge: disable Rust workers if in-memory merge is in progress
Summary: We don't really need the Rust workers for this, as we do not expect thousands of files to be changed during an in-memory merge.

Reviewed By: DurhamG

Differential Revision: D20495141

fbshipit-source-id: e72f8c4b01deee46ee72364dcd6716692c4103ab
2020-03-17 16:01:49 -07:00
Xavier Deguillard
499a67a417 tests: add a test using the Rust workers
Summary: Basic test to validate that updating files works as expected.

Reviewed By: DurhamG

Differential Revision: D20450123

fbshipit-source-id: 3ce09e1f72fe00052b86eec07668f3aa45824725
2020-03-17 16:01:48 -07:00