Commit Graph

701 Commits

Author SHA1 Message Date
Simon Farnsworth
4f1a5d8ea1 Make it possible to generate hashes for uploaded content during upload
Summary:
Previously, we assumed that all content hashes came from Mercurial;
this is not going to remain true, as we will want to be able to upload manifests
that have been synthesised from Bonsai Changesets. Turn the previous boolean
into a tri-state, and fix up all callers to get the behaviour they expect.

Reviewed By: StanislavGlebik

Differential Revision: D8014911

fbshipit-source-id: 9156b9fab4542ceb269626ad005e1b28392b5329
2018-05-16 09:35:28 -07:00
Lukas Piatkowski
3174e6e60b new_blobimport: fix misspelled max-concurrent-request-per-io-thread clap parameter
Reviewed By: kulshrax

Differential Revision: D7971048

fbshipit-source-id: 39ef3df4d2fcd9c1d60f21707c0e4d4c2612180c
2018-05-11 12:54:46 -07:00
Lukas Piatkowski
7dff6240c1 new_blobimport: speed up changeset parsing
Summary: Parsing and reading revlogs is cpu intensive, thus let's use cpupool for it

Reviewed By: StanislavGlebik

Differential Revision: D7926174

fbshipit-source-id: 7f023088941e1ad118a683da972f87607e0bfec4
2018-05-11 12:54:46 -07:00
Lukas Piatkowski
1f58bd7060 new_blobimport: print number of uploaded CS every 5000
Summary: printing every CS is too verbose, but we still want to see progress in non-debug mode

Reviewed By: kulshrax

Differential Revision: D7925747

fbshipit-source-id: c3ed92ef8c8fbf7714779a2bf011d31c94aefa37
2018-05-11 12:54:46 -07:00
Jeremy Fitzhardinge
51c49a47be tp2: update to rust 1.26.0 and corresponding rust-crates-io rebuild
Summary:
Rust 1.26 adds many new language features. In particular `impl Trait` is now
stable, so we no longer need `conservative_impl_trait`.

There also seems to have been changed in the (unstable) TryFrom with respect to
usize, and the behaviour of the never type `!`.

There are still a few deprecation warnings, but they don't cause the build to
fail.

Path remapping is now stable, so the buck config needs to change to use it
rather than the unstable command line option.

TODO:
- get aarch64 rust-crates-io build (can defer to a later update)

Reviewed By: Imxset21

Differential Revision: D7966091

fbshipit-source-id: 2e61e262c21eb01c852a36f49c6a6369cdaddcdb
2018-05-11 11:07:33 -07:00
Lukas Piatkowski
25ea94dd27 server: remove clienttelemetry from capabilities since it is not supported yet
Summary: this breaks the prod since we are not able to parse clienttelemetry being send by hg

Reviewed By: jsgf

Differential Revision: D7967361

fbshipit-source-id: e10eb52852ccb8c2878db01cd63b05cd7f901ae4
2018-05-11 08:52:43 -07:00
Arun Kulshreshtha
4483e94781 Update tp2 to patch Diesel
Summary:
@[1636530097:mung] reported that there was a bug wherein Diesel was incorrectly using MySQL's API by incorrectly calling `mysql_store_result` after `mysql_next_result` indicates that no more results are available. This behavior [appears to be intentional](705cdbe1fe/diesel/src/mysql/connection/raw.rs (L160)), but directly contradicts what the [documentation says is correct](https://dev.mysql.com/doc/refman/8.0/en/mysql-store-result.html). In MySQL 8.0, this results in the client getting an error for incorrect usage of the API.

I've added a local patch to [our fork of Diesel](https://github.com/kulshrax/diesel) on Github to [remove the extra call to `mysql_store_result`](7ae79c193e), and rebuilt the `rust-crates-io` tp2 project to use this version of Diesel. This diff updates the symlinks in fbcode to point to the updated tp2 project.

Reviewed By: lth

Differential Revision: D7961290

fbshipit-source-id: 804c599a5688cd54fb0fcc33688c608d068d7a7b
2018-05-10 18:17:32 -07:00
Stanislau Hlebik
7e540c6dbc mononoke: use tcp instead of unix socket for hgcli
Summary: This allows us to put hgcli on the different host

Reviewed By: jsgf

Differential Revision: D7910980

fbshipit-source-id: 45bdd1ee42b54f8f1a425ed6950e785cdf85bfc3
2018-05-10 02:02:40 -07:00
Stanislau Hlebik
97c75e1076 mononoke: do not fail in case of bad connection
Summary: Let's just log it

Reviewed By: jsgf

Differential Revision: D7910978

fbshipit-source-id: 50dd61637d5b967f4c4af086539f565d8ddb4be6
2018-05-10 02:02:40 -07:00
Stanislau Hlebik
37db2d0ff7 mononoke: configure Manifold QPS via config option
Summary:
This is a (hopefully) short term hack to overcome the problem of overloading
Manifold.
Ideally manifold client has to adjust dynamically to the load. However
implementing it is
not trivial, so for now let's configure via config option.

Reviewed By: jsgf

Differential Revision: D7910979

fbshipit-source-id: c2dc32b592747732e7e6574e0fecf2d0aaef447e
2018-05-10 02:02:39 -07:00
Stanislau Hlebik
a4e7962ffc mononoke: add a separate connection acceptor thread
Summary:
Curently hgcli can connect to Mononoke only if they are on the same host,
because unix domain socket are used. Also Mononoke has to use separate unix
domain socket for different repos.
The goal of this stack of diffs is to remove these limitations:
1 Make it possible to have hgcli and Mononoke server on different hosts
2 Make it possible to use one port/unix domain socket to connect to many repos.

This diff adds a separate thread that parses the Preamble, extracts the
reponame and sends request to a thread responsible for this repo.

Also hgcli now has a new cmd line option that specifies path to connect to.

Reviewed By: jsgf

Differential Revision: D7845156

fbshipit-source-id: a48bcfeec4755b2d5b3dfcf8e0383e6945178018
2018-05-10 02:02:38 -07:00
Stanislau Hlebik
1e8184e231 mononoke: fix sshrelay
Summary: put_slice panics if not enough space. This diff fixes it

Reviewed By: jsgf

Differential Revision: D7876156

fbshipit-source-id: b1e2cc520e5c598588df9a8090fb70efb413b381
2018-05-10 02:02:35 -07:00
Stanislau Hlebik
88051823df mononoke: simple precaching
Summary:
Simple precaching. Reads all the manifests for a bookmark and up to
`commit_warmup_limit` of ancestors.

Warming up file content can be slow, so we don't do it now.

Reviewed By: jsgf

Differential Revision: D7863728

fbshipit-source-id: bed1508b01e4e002a399d00ea45faf8a8e228d0a
2018-05-10 02:02:34 -07:00
Tim Fox
9e5f08cf6b convert from put_X::<BigEndian> -> put_X_be
Summary: Replace all occurrences of the deprecated put_X::<BigEndian> methods with put_X_be in the files marked with T29077977, and remove any allow deprecation lines in the files and unused imports that might be introduced.

Reviewed By: jsgf

Differential Revision: D7928695

fbshipit-source-id: 8f16915f6b08aa55521637fff58a6cc27c13321a
2018-05-09 09:02:11 -07:00
Lukas Piatkowski
5c2f0c675c new_blobimport: add --debug flag
Reviewed By: StanislavGlebik

Differential Revision: D7925219

fbshipit-source-id: 54e626c53eece7bc3742d9d0b6f1b5e1c5796c0e
2018-05-09 03:05:56 -07:00
Lukas Piatkowski
f15ea2eca1 mercurial: fix extras escaping
Summary: extras use python's escaping functionality in mercurial, the '\r' case is happening in production data

Reviewed By: StanislavGlebik

Differential Revision: D7925149

fbshipit-source-id: 23c544b8a757c40a120b69d1ec1ad942c672de17
2018-05-09 02:54:09 -07:00
Stanislau Hlebik
e99fce6bd4 mononoke: add separate types for Bookmark and BookmarkPrefix
Summary:
This will make it easier to change the "real" bookmark type from AsciiString to
String if we decide to do that.

BookmarkPrefix is a separate type because we may want to change it from
AsciiString to String. Also we don't want to confuse a bookmark prefix with a
bookmark name.

Reviewed By: jsgf

Differential Revision: D7909992

fbshipit-source-id: 3d4d075c204ed5ef1114a743430982c2836bac04
2018-05-09 02:11:17 -07:00
Jeremy Fitzhardinge
a29aac3469 tp2: update rust-crates-io
Summary:
Update rust-crates-io. Suppress warnings on some deprecated functions;
bootcamped fixes in T29077977.

Reviewed By: StanislavGlebik

Differential Revision: D7897307

fbshipit-source-id: e4b18927b271c663c67ca68bcd784c24b7900e73
2018-05-08 09:09:02 -07:00
Alexander Mols
dc9201537a fix typo in doc
Reviewed By: StanislavGlebik

Differential Revision: D7842753

fbshipit-source-id: 929b4b91e8ac00cf755b274d4be30d3ae8d9598b
2018-05-08 04:36:18 -07:00
Stanislau Hlebik
3eba828030 mononoke: pass RepoConfig directly
Summary:
There are already many parameters, and I want to add a few more. Let's pass
RepoConfig directly

Reviewed By: jsgf

Differential Revision: D7861092

fbshipit-source-id: 76a6e4d2fbb06792fea50cee544f6fd62f670887
2018-05-08 02:09:48 -07:00
Rain ⁣
0a0bc2b420 mercurial: add changeset envelopes
Summary: This will replace `RawCSBlob` and the current bincode serialization.

Reviewed By: StanislavGlebik

Differential Revision: D7869524

fbshipit-source-id: 1a2f5d159a20889b10bb6b235f48769da4a187c1
2018-05-07 14:49:46 -07:00
Rain ⁣
3f75ea7084 mercurial: implement manifest envelopes
Summary:
Very similar to file envelopes.

Also add some missing `#[inline]` annotations for file envelopes.

Reviewed By: StanislavGlebik

Differential Revision: D7868445

fbshipit-source-id: 3fb0d87e087612f37c8d5d0a90065359c671ceb8
2018-05-07 14:49:45 -07:00
Jeremy Fitzhardinge
22bc45bf1f mononoke: migrate DelayBlob to new timer model
Summary:
We don't need to explicitly create timers since the environment has
one set up by default.

Reviewed By: StanislavGlebik

Differential Revision: D7873576

fbshipit-source-id: bfcdc27a46397bff0730f64ad4f3de3865c7cfa1
2018-05-04 10:15:26 -07:00
Stanislau Hlebik
700493c664 mononoke: move requests handling to thread pool
Summary:
Previously we wouldn't start processing next request until we are done with
this one.
It's easy to fix with asynchronize.

Reviewed By: jsgf

Differential Revision: D7835828

fbshipit-source-id: a9efef896f09815ca2f3e3659c814ad65edbb715
2018-05-04 04:35:49 -07:00
Stanislau Hlebik
12968b1b9e mononoke: make it possible to fetch config repo by bookmark
Summary: It will make deploying mononoke considerably easier

Reviewed By: farnz

Differential Revision: D7831620

fbshipit-source-id: 77db867f5ce03975eadea7a8693bc88c1d1122cd
2018-05-03 10:31:32 -07:00
Stanislau Hlebik
b94f7fe0c1 mononoke: use many threads for the blobstore
Summary:
Let's use the new feature in SendWrapper to use many io threads. That will help
us mitigate the high cpu usage issues we were having with blobstore requests.

Manifold blobstore now creates the io threads itself.

Reviewed By: kulshrax

Differential Revision: D7831420

fbshipit-source-id: ec9f3327347ca6bfbd23c482e69a6fee663b1da5
2018-05-03 10:31:32 -07:00
Stanislau Hlebik
b3432410ae mononoke: use caching for filenodes
Summary: As with changesets and blobs, let's cache filenodes data

Reviewed By: jsgf

Differential Revision: D7831105

fbshipit-source-id: 334cb474f5cc3ef8dba0945d11273b2b3875e8ad
2018-05-03 10:31:32 -07:00
Stanislau Hlebik
9756854215 mononoke: check Preamble reponame
Summary:
Curently hgcli can connect to Mononoke only if they are on the same host, because unix domain socket are used. Also Mononoke has to use separate unix domain socket for different repos.
The goal of this stack of diffs is to remove these limitations:
1 Make it possible to have hgcli and Mononoke server on different hosts
2 Make it possible to use one port/unix domain socket to connect to many repos.

Check that that reponame from Preamble is the same as Mononoke reponame, and raise an error if it isn't.

Reviewed By: jsgf

Differential Revision: D7845157

fbshipit-source-id: 6567d5417ce58c4fba0364108592eed5bf0223c1
2018-05-03 03:30:47 -07:00
Stanislau Hlebik
5895217459 mononoke: send Preamble as the first message
Summary:
Curently hgcli can connect to Mononoke only if they are on the same host, because unix domain socket are used. Also Mononoke has to use separate unix domain socket for different repos.
The goal of this stack of diffs is to remove these limitations:
1 Make it possible to have hgcli and Mononoke server on different hosts
2 Make it possible to use one port/unix domain socket to connect to many repos.

In this diff let's start sending Preamble as the first message from hgcli to Mononoke server.
For now Mononoke server will just ignore it. Later we'll use it to connect to the correct repo.

Reviewed By: jsgf

Differential Revision: D7845159

fbshipit-source-id: 3d2232028d931bfa7309e826b38084a87be1f85c
2018-05-03 03:30:47 -07:00
Stanislau Hlebik
ce3719269f mononoke: add SshStream::Preamble
Summary:
Curently hgcli can connect to Mononoke only if they are on the same host,
because unix domain socket are used. Also Mononoke has to use separate unix
domain socket for different repos.
The goal of this stack of diffs is to remove these limitations:
1 Make it possible to have hgcli and Mononoke server on different hosts
2 Make it possible to use one port/unix domain socket to connect to many repos.

This diff adds a special message called Preamble. It will be the first message
sent by hgcli to Mononoke server. The most important information it contains is
reponame to tell Mononoke server what repo client it is interested in. Since
this is a crucial information, it is "required" i.e. Preamble will fail to
parse if reponame is not set. There can be other set in the `misc` field, for
example, user/host of a connecting user.

Currently Preamble is json encoded. We can change it in the future if we need
to.

Reviewed By: jsgf

Differential Revision: D7845158

fbshipit-source-id: 3cb98f0f7edcda8a0be2d5bfef1c7c4a18c8db6f
2018-05-03 03:30:47 -07:00
Stanislau Hlebik
0a15affb25 mononoke: small ssh_relay refactoring
Summary:
Curently hgcli can connect to Mononoke only if they are on the same host,
because unix domain socket are used. Also Mononoke has to use separate unix
domain socket for different repos.
The goal of this stack of diffs is to remove these limitations:
1 Make it possible to have hgcli and Mononoke server on different hosts
2 Make it possible to use one port/unix domain socket to connect to many repos.

This diff makes a small refactoring to make next diff smaller. There should be
no change in the functionality

Reviewed By: jsgf

Differential Revision: D7845155

fbshipit-source-id: 723a974e3e648b3e3200139aea27fc34691b8983
2018-05-03 03:30:47 -07:00
Stanislau Hlebik
f0dfa690b9 mononoke: make SshStream non-copyable and non-hashable
Summary:
Curently hgcli can connect to Mononoke only if they are on the same host,
because unix domain socket are used. Also Mononoke has to use separate unix
domain socket for different repos.
The goal of this stack of diffs is to remove these limitations:
1 Make it possible to have hgcli and Mononoke server on different hosts
2 Make it possible to use one port/unix domain socket to connect to many repos.

It's not required. And in the next diff we are going to add new SshStream
value, that will contain non-hashable and non-copyable struct in it.

Reviewed By: jsgf

Differential Revision: D7845160

fbshipit-source-id: 75bdd1706b1bd2f1b16a9e8c793c346a093bdd54
2018-05-03 03:30:47 -07:00
Stanislau Hlebik
e8dbc61fa7 mononoke: fix typo
Reviewed By: farnz

Differential Revision: D7845161

fbshipit-source-id: 2dadee09cf23f0687640bfd2b29039b0695d7f00
2018-05-03 03:30:47 -07:00
Stanislau Hlebik
0871d80126 mononoke: fix formatting
Reviewed By: jsgf

Differential Revision: D7845162

fbshipit-source-id: d097fb5cc540a9a9f9f29edc541f721f01c16c60
2018-05-02 13:03:33 -07:00
Stanislau Hlebik
a5f31946ac mononoke: revsets optimized for pull
Summary:
Specialized revsets to make pull faster.
Previous Union + Intersect combination was extremely slow because it fetched a
lot of stuff that wasn't used.

Reviewed By: farnz

Differential Revision: D7829394

fbshipit-source-id: c038f184c305e48e18b6fcb0f83bab9e9a42b098
2018-05-02 02:23:43 -07:00
Lukas Piatkowski
128d7a2424 cmd utils: add revlogrepo command for reading revlogs in Rust
Summary: The goal is to be able to read revlogs using Rust code and also parse and serialize them in Rust formats for debugging purposes

Reviewed By: farnz

Differential Revision: D7830358

fbshipit-source-id: 95e257a4482eca22b328b174bce3fceec1b47245
2018-05-01 16:35:08 -07:00
Lukas Piatkowski
3232bfa4b2 blobrepo: accept a list of exepcted changed files for Changeset creation
Summary:
The commits that are blobimported have out of order or simply incorrect lists of changed files.
Because we have to persists Changesets as is we are passing the untouched list of files here to be used by Changeset.

Reviewed By: farnz

Differential Revision: D7830310

fbshipit-source-id: 56adec2c317896decaa9176b3a6bfb0cab187ed0
2018-05-01 16:35:08 -07:00
Lukas Piatkowski
e59fec4631 blobnode: if p1 == p2 do not treat it as Parent::One, but use Parent::Two instead
Summary: Apparently p1 == p2 is a thing that happens in Mercurial, let's keep this logic in Mercurial-facing objects

Reviewed By: StanislavGlebik

Differential Revision: D7830183

fbshipit-source-id: eb473d57cb05f6553327bee2d5aeff9cf7d50eba
2018-05-01 16:35:08 -07:00
Stanislau Hlebik
44ce21f2b4 mononoke: add stats
Summary: It can be useful to understand how often do we hit a db, write to blobstore, etc

Reviewed By: farnz

Differential Revision: D7806954

fbshipit-source-id: 9c85cbb11e184ae9f7751e05e961980b29b7568a
2018-05-01 06:07:53 -07:00
Stanislau Hlebik
3392ed61e9 mononoke: fix delta application
Summary:
If baserev == Some(idx), we changed it to None. Also we can have None if
baserev == -1 in mercurial. However these two cases are different. In the first
case it means that we have a literal chunk, not delta. In the second case it
means that we have a delta against empty string! So this is technically almost
the same, except that delta against empty string also have a 12 bytes prefix.
Previously this prefix was used as part of a revision data.
This diff fixes it.

Reviewed By: quark-zju

Differential Revision: D7815713

fbshipit-source-id: def2e54b2cc7379ba8f931ecf3f3c0c38d716058
2018-05-01 01:34:37 -07:00
Stanislau Hlebik
d0bb9540a7 mononoke: remove unused parameter
Reviewed By: quark-zju

Differential Revision: D7815769

fbshipit-source-id: f49318398519111da351d03f73864088b73517fe
2018-05-01 01:34:37 -07:00
Simon Farnsworth
b6ebaa6f08 Add a session overview Scuba sample
Summary:
We want to be able to identify "interesting" sessions - add a Scuba
sample that tells us what wireprotocol commands were sent, and how long the
session lasted.

Reviewed By: jsgf

Differential Revision: D7813906

fbshipit-source-id: a9bd48996a60b41098243f6c815465cd33d1429c
2018-04-30 10:44:05 -07:00
Simon Farnsworth
0baf1ee014 Supply the repo client with a logger that includes session details
Summary:
We want to be able to tie up our logs with a session identifier, so
that we can see if a given slow operation is expected (a complex session) or a
surprise. Give the client a logger that has a session ID tied in.

Reviewed By: jsgf

Differential Revision: D7813908

fbshipit-source-id: bc8a59046c19a0939fd044ca8b5b7ccc2956c5f0
2018-04-30 10:44:05 -07:00
Simon Farnsworth
e3adaf7f50 Fix performance tests
Summary:
These have bitrotted, but I need a test case for a Scuba change. Fix
them.

Reviewed By: StanislavGlebik

Differential Revision: D7813907

fbshipit-source-id: e4e9b01a8a3c1de27f59c6d5ea695152df99d4ff
2018-04-30 10:44:04 -07:00
Lukas Piatkowski
4d854a243e blobrepo: verify that the Changeset's hash provided by client matches our computed hash
Reviewed By: jsgf

Differential Revision: D7779664

fbshipit-source-id: c844c41c1ff825babe653e4d2caa98348ad34483
2018-04-28 16:33:03 -07:00
Lukas Piatkowski
de31985b79 utility cmds: add blobstore command to query blobstore for content
Summary: Useful utility that let's you f.e. fetch blob of data from manifold, decode it and show it to you

Reviewed By: jsgf

Differential Revision: D7779154

fbshipit-source-id: aaa4ae1d09b64f7f52c7942a51e8bb4ccc0cb700
2018-04-28 16:33:03 -07:00
Lukas Piatkowski
346183fa8c blobrepo: fix delta application by applying it on raw content of filenode
Summary: The deltas are meant to be applied on raw filenode content that has incorporated copy/move information. Make it so

Reviewed By: jsgf

Differential Revision: D7777329

fbshipit-source-id: 23ce90269cdf5dbb8a16aab026c031c2af68fccb
2018-04-28 16:33:03 -07:00
Lukas Piatkowski
3859718ff5 mercurial_types: return Error on malformed delta application
Summary: The current behavior of delta::apply will panic Mononke server when the client sends malformed delta request. This change will instead propagate an Error explaining why the delta was malformed.

Reviewed By: jsgf

Differential Revision: D7775544

fbshipit-source-id: a64c27c7b9f13323b8be70eb8c2cdf315ce8f08d
2018-04-28 16:33:03 -07:00
Siddharth Agarwal
782e18fe55 mercurial: add file node envelope
Summary:
We'd like to move away from `RawNodeBlob` and `RawCSBlob` to data structures
serialized by Thrift. This is the first step to doing that.

The most important thing here is that it reuses file content IDs from native
Mononoke storage.

Reviewed By: jsgf

Differential Revision: D7771990

fbshipit-source-id: de4ee0b56aa6610caeff84b2235e19855df086cb
2018-04-27 14:04:38 -07:00
Siddharth Agarwal
6d1b3573d1 mononoke-types: allow the hash type to be changed later
Summary: Want to get this in now before I forget.

Reviewed By: jsgf

Differential Revision: D7781551

fbshipit-source-id: a5e6fa062514d90113c96307f78e20fa05f770ea
2018-04-27 14:04:38 -07:00