Jennifer Wang
38e01cba83
Merge branch 'release/v1.12.0' into jen/12tomaster
2021-10-04 02:38:00 -04:00
Aayush Rajasekaran
41be8fc9e5
Set the calibnet chocolate epoch
2021-10-02 17:28:46 -04:00
Aayush Rajasekaran
ec14259b5a
Prep the butterfly network for v14
2021-10-02 17:27:39 -04:00
Jennifer Wang
faece90316
update butterfly
2021-10-01 20:37:13 -04:00
Jennifer Wang
2931be5fc5
bump the version to v1.12.0-rc1
2021-10-01 19:45:49 -04:00
Aayush Rajasekaran
50ce475701
Upgrade to actors v6-rc1
2021-10-01 17:57:32 -04:00
Aayush Rajasekaran
77de45f684
Set Chocolate upgrade epoch for butterfly
2021-10-01 17:50:46 -04:00
Travis Person
9b80ea4cf1
reset of the butterfly network
2021-10-01 17:33:58 -04:00
Travis Person
c104cb446b
reset butterfly network
2021-10-01 17:25:59 -04:00
Aayush Rajasekaran
54695c6f8c
Extend FaultMaxAge to 6 weeks for actors v6 on test networks only
2021-10-01 15:47:23 -04:00
Łukasz Magiera
95e8b59367
Merge pull request #7341 from filecoin-project/mg/feat/panic-reporter
...
feat: Catch panic to generate report and reraise
2021-10-01 10:50:19 +01:00
Mike Greenberg
89d7a72a4b
fix: undo hasty changes
2021-09-28 11:30:35 -04:00
Mike Greenberg
c3faadf749
fix: Remove debug syscall; Tighten perms; Strip spaces in label
2021-09-27 17:54:43 -04:00
Jennifer Wang
f57d4b4126
say bye to more nerpa
2021-09-22 21:17:05 -04:00
Mike Greenberg
574b5c03dc
chore: Expose build.BuildTypeString()
2021-09-22 09:58:07 -04:00
Mike Greenberg
b3816bc2dc
chore: inline build version within PanicReporter
2021-09-22 04:55:39 -04:00
Jennifer Wang
6064d2f2f1
remove nerpanet related code base as it was deprecated on aug 16 https://docs.filecoin.io/about-filecoin/networks/#deprecated-networks
2021-09-22 00:59:38 -04:00
Aayush Rajasekaran
7b4c657e90
Add v6 actors
2021-09-21 14:23:14 -04:00
Aayush Rajasekaran
b9bfcc4b69
Randomness: Move getters from ChainAPI to StateAPI
2021-09-21 14:20:15 -04:00
Mike Greenberg
926858aeec
fix: persist defaults to repo path; incl version dump
2021-09-20 15:40:48 -04:00
Mike Greenberg
b4a129068a
fix: lint errors
2021-09-17 18:11:56 -04:00
Mike Greenberg
ccf24b9952
chore: Configurable LOTUS_PANIC_JOURNAL_LOOKBACK
2021-09-17 18:09:47 -04:00
Mike Greenberg
f79d34be5c
chore: Separate repo and persistance paths
2021-09-17 18:01:26 -04:00
Mike Greenberg
595b51ecdd
feat: Catch panic to generate report and reraise
2021-09-16 22:51:10 -04:00
Aayush Rajasekaran
1d6db306ec
Randomness: Move getters from ChainAPI to StateAPI
2021-09-15 00:03:13 +02:00
Peter Rabbitson
0444435589
Expose basic text-based datamodel selector on retrieval
...
Syntaxt of selection is located at
https://pkg.go.dev/github.com/ipld/go-ipld-selector-text-lite#SelectorSpecFromPath
Example use, assuming that:
- The root of the deal is a plain dag-pb unixfs directory
- The directory is not sharded
- The user wants to retrieve the first entry in that directory
lotus client retrieve --miner f0XXXXX --datamodel-path-selector 'Links/0/Hash' bafyROOTCID ~/output
For a much more elaborate example see the top of ./itests/deals_partial_retrieval_test.go
2021-09-10 09:44:11 +02:00
Jennifer Wang
6907797783
version bump v1.11.3-rc1
2021-09-08 01:31:23 -04:00
Jennifer Wang
612befc962
bump master to v1.11.4-dev
2021-09-08 01:23:35 -04:00
Łukasz Magiera
8b9e9fede4
docsgen
2021-09-07 18:49:53 +02:00
Steven Allen
1cf556c3a2
feat: expose ChainGetPath on the gateway
2021-08-30 16:43:21 -07:00
Łukasz Magiera
1ba427f638
alerting: Address review
2021-08-26 16:09:18 +02:00
Aayush Rajasekaran
de79bf57e5
Bump version to v1.11.13-dev
2021-08-25 11:18:38 -04:00
Łukasz Magiera
12875a9664
api/command for encoding actor params
2021-08-20 17:32:57 +02:00
Jennifer Wang
7ff5844aa2
Merge branch 'releases' into jen/mas
2021-08-17 10:38:36 -04:00
Aarsh Shah
d7076778e2
integrate DAG store and CARv2 in deal-making ( #6671 )
...
This commit removes badger from the deal-making processes, and
moves to a new architecture with the dagstore as the cental
component on the miner-side, and CARv2s on the client-side.
Every deal that has been handed off to the sealing subsystem becomes
a shard in the dagstore. Shards are mounted via the LotusMount, which
teaches the dagstore how to load the related piece when serving
retrievals.
When the miner starts the Lotus for the first time with this patch,
we will perform a one-time migration of all active deals into the
dagstore. This is a lightweight process, and it consists simply
of registering the shards in the dagstore.
Shards are backed by the unsealed copy of the piece. This is currently
a CARv1. However, the dagstore keeps CARv2 indices for all pieces, so
when it's time to acquire a shard to serve a retrieval, the unsealed
CARv1 is joined with its index (safeguarded by the dagstore), to form
a read-only blockstore, thus taking the place of the monolithic
badger.
Data transfers have been adjusted to interface directly with CARv2 files.
On inbound transfers (client retrievals, miner storage deals), we stream
the received data into a CARv2 ReadWrite blockstore. On outbound transfers
(client storage deals, miner retrievals), we serve the data off a CARv2
ReadOnly blockstore.
Client-side imports are managed by the refactored *imports.Manager
component (when not using IPFS integration). Just like it before, we use
the go-filestore library to avoid duplicating the data from the original
file in the resulting UnixFS DAG (concretely the leaves). However, the
target of those imports are what we call "ref-CARv2s": CARv2 files placed
under the `$LOTUS_PATH/imports` directory, containing the intermediate
nodes in full, and the leaves as positional references to the original file
on disk.
Client-side retrievals are placed into CARv2 files in the location:
`$LOTUS_PATH/retrievals`.
A new set of `Dagstore*` JSON-RPC operations and `lotus-miner dagstore`
subcommands have been introduced on the miner-side to inspect and manage
the dagstore.
Despite moving to a CARv2-backed system, the IPFS integration has been
respected, and it continues to be possible to make storage deals with data
held in an IPFS node, and to perform retrievals directly into an IPFS node.
NOTE: because the "staging" and "client" Badger blockstores are no longer
used, existing imports on the client will be rendered useless. On startup,
Lotus will enumerate all imports and print WARN statements on the log for
each import that needs to be reimported. These log lines contain these
messages:
- import lacks carv2 path; import will not work; please reimport
- import has missing/broken carv2; please reimport
At the end, we will print a "sanity check completed" message indicating
the count of imports found, and how many were deemed broken.
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Dirk McCormick <dirkmdev@gmail.com>
Co-authored-by: Raúl Kripalani <raul@protocol.ai>
Co-authored-by: Dirk McCormick <dirkmdev@gmail.com>
2021-08-16 23:34:32 +01:00
Jennifer Wang
c37241c733
resolve conflicts and docsgen
2021-08-16 16:26:50 -04:00
Jennifer Wang
263ae6f99f
update version
2021-08-16 16:21:06 -04:00
Jennifer Wang
e397a079c1
docsgen
2021-08-13 23:42:59 -04:00
Jennifer Wang
4bcf159381
v1.11.1-rc3
2021-08-13 23:16:03 -04:00
ZenGround0
f34631facc
Fix docsgen
2021-08-13 00:00:56 -04:00
ZenGround0
8c9321ce7b
revert pricelist by version to pricelist by epoch
2021-08-12 23:58:20 -04:00
Raúl Kripalani
85a4f8325f
fix docs and nits.
2021-08-12 22:08:20 -04:00
Anton Evangelatov
e90e71456b
add RuntimeSubsystems API method; use it in lotus-miner info
2021-08-12 22:05:08 -04:00
Steven Allen
dcff06bd91
test: genesis actors version
...
Properly handle genesis in actors tests. Fast-forward upgrading to
actors v13 doesn't work because there needs to be at least a day between
v0 genesis and v13 (due to differences in miner cron).
2021-08-11 13:30:15 -07:00
ZenGround0
bfda864c1b
Fix docsgen
2021-08-11 09:49:23 -04:00
ZenGround0
b914e95f34
revert pricelist by version to pricelist by epoch
2021-08-11 09:49:23 -04:00
Steven Allen
57bf5c2143
feat: add ChainGetTipSetAfterHeight
...
This is identical to ChainGetTipSetByHeight, but returns the tipset
following any null tipsets. This is what the user usually wants anyways.
(and I need it for another PR)
2021-08-05 12:07:14 -07:00
Jennifer Wang
020cc5e64f
docsgen
2021-08-01 03:46:36 -04:00
Jennifer Wang
52b76c9d5c
Prepare for v1.11.1-rc2:
...
- bump the version
- update the changelog
2021-08-01 03:32:03 -04:00
Cory Schwartz
c4ca3660de
set buildtype in nerpa and butterfly
2021-07-29 20:41:24 -07:00
Jennifer Wang
786d3e79eb
make gen
2021-07-29 04:51:28 -04:00
Raúl Kripalani
07f40b9488
fix docs and nits.
2021-07-28 20:03:25 +01:00
Anton Evangelatov
de4a847078
add RuntimeSubsystems API method; use it in lotus-miner info
2021-07-28 16:02:05 +03:00
Jennifer Wang
f9595b58ee
make gen
2021-07-27 23:02:54 -04:00
Jennifer Wang
e49c77e29c
bump master version to v1.11.2-dev
2021-07-27 22:54:23 -04:00
Jennifer Wang
2e98f8b5d2
make gen
2021-07-27 22:52:39 -04:00
Jennifer Wang
8a54273f8b
add v1.11.1-rc1 changelog and bump the version
2021-07-27 22:42:18 -04:00
Mike Greenberg
76a9f4241b
feat: Graceful error when api impl is nil
2021-07-26 13:51:37 +02:00
vyzo
77604db716
make gen
2021-07-26 08:33:25 +03:00
vyzo
21bb2bda09
make gen
2021-07-25 11:25:29 +03:00
Jennifer
19048e6a91
Merge pull request #6837 from Digital-MOB-Filecoin/master
...
Nerpa v13 upgrade
2021-07-22 23:56:09 -04:00
ZenGround0
c130d2cb87
Rebase fix
2021-07-22 09:50:43 -04:00
ZenGround0
aff7200b3e
Add missing upgrade height
2021-07-22 09:49:47 -04:00
ZenGround0
47b5afa84b
Add version six and a half
2021-07-22 09:49:47 -04:00
Łukasz Magiera
660829703a
Merge remote-tracking branch 'origin/master' into feat/split-net-api
2021-07-22 15:38:06 +02:00
Liviu Damian
e64626cdf3
Nerpa v13 upgrade
2021-07-22 16:31:28 +03:00
Łukasz Magiera
c9bc247732
api gen
2021-07-22 11:23:43 +02:00
Łukasz Magiera
812dc266cf
builder: Don't require specific NetAPI impl in StorageMinerAPI
2021-07-15 12:01:13 +02:00
hunjixin
d023026cb0
fix confilct
2021-07-15 14:55:03 +08:00
Anton Evangelatov
d89ddb9315
resolve conflicts
2021-07-12 11:34:37 +02:00
Łukasz Magiera
8f7bf1df86
Merge pull request #6697 from filecoin-project/feat/dealpublish-ctl-config
...
Config for deal publishing control addresses
2021-07-08 19:00:29 +02:00
Łukasz Magiera
2dc27d6ab4
itests: Fix deal provider collateral flakiness
2021-07-07 19:41:46 +02:00
Travis Person
9977a6d1d7
Add genesis for interop network
2021-07-06 17:06:55 +00:00
Travis Person
9d6d1f5715
Reset interop network
2021-07-06 17:06:55 +00:00
Anton Evangelatov
4f0a96c9c7
resolved conflicts
2021-06-30 13:16:52 +02:00
Łukasz Magiera
df86efbd43
docsgen
2021-06-29 11:27:06 +02:00
Aayush Rajasekaran
07487b6d20
Update version.go
2021-06-28 22:43:14 -04:00
Łukasz Magiera
c1303f1eac
gateway: Add support for Version method
2021-06-28 19:05:27 +02:00
Łukasz Magiera
fa2be42eb0
Merge remote-tracking branch 'origin/release/v1.10.0' into chore/merge-1.10
2021-06-23 15:51:00 +02:00
Aayush Rajasekaran
2dd498297f
Set HyperDrive upgrade epoch
2021-06-22 19:34:03 -04:00
Anton Evangelatov
e656aad298
regenerate docs
2021-06-22 13:36:24 +02:00
Anton Evangelatov
6720463799
resolve merge conflicts
2021-06-22 11:28:23 +02:00
Raúl Kripalani
c0a8a9f5b5
make gen.
2021-06-21 20:52:59 +01:00
Łukasz Magiera
b37a66c7c9
Merge remote-tracking branch 'origin/release/v1.10.0' into chore/merge-1.10
2021-06-21 17:03:03 +02:00
Jennifer Wang
e1c2567136
docs gen
2021-06-18 22:20:13 -04:00
Jennifer Wang
b01189467a
version bump to lotus v1.10.0-rc6
2021-06-18 22:05:19 -04:00
Travis Person
c11a32cf69
Add calibration genesis
2021-06-19 00:53:21 +00:00
Travis Person
65844761b6
Calibration network reset
2021-06-18 23:55:01 +00:00
Aayush Rajasekaran
71785f9099
Lotus version 1.10.0-rc5
2021-06-16 22:15:11 -04:00
Łukasz Magiera
7640ae47de
docsgen
2021-06-16 14:51:40 +02:00
Jennifer Wang
c1529714e6
v1.10.0-rc4 have this version base off the right head = v1.9.0 tag
2021-06-15 22:16:41 -04:00
Aayush Rajasekaran
520a0091f5
Merge branch 'releases' into release/v1.10.0
2021-06-15 17:40:36 -04:00
Jennifer Wang
9d7f94bc67
make gen happy
2021-06-14 22:02:00 -04:00
Jennifer Wang
ad6ddcb590
update lotus version to v1.10.0-rc3
2021-06-14 21:44:03 -04:00
Anton Evangelatov
31e6fb154e
resolve conflicts
2021-06-14 11:27:54 +02:00
Aayush Rajasekaran
c4c71802f2
Lotus version 1.10.0-rc2
2021-06-09 23:31:52 -04:00
Jennifer Wang
0379adc9f1
Set ntwk v13 HyperDrive Calibration upgrade epoch
2021-06-09 23:27:58 -04:00
Jennifer Wang
55b77a3c99
Set ntwk v13 HyperDrive Calibration upgrade epoch
2021-06-09 23:26:11 -04:00
Cory Schwartz
4bff4f25ad
network reset friday
2021-06-08 18:28:01 -04:00
Aayush Rajasekaran
71909c5642
Fix nerpa build
2021-06-08 16:46:53 -04:00
Anton Evangelatov
9ab84bdc0a
upgrade docsgen
2021-06-08 15:59:37 +02:00
Anton Evangelatov
9f3ec82cc1
initial resolution of conflicts
2021-06-08 13:01:22 +02:00
aarshkshah1992
21e6b50294
finished rebasing PR
2021-06-07 16:02:15 +05:30
Łukasz Magiera
42ec5928e3
Merge pull request #6337 from filecoin-project/feat/list-retrievals
...
Add a command to list retrievals
2021-06-04 21:13:25 +02:00
Łukasz Magiera
a7746961fb
Merge remote-tracking branch 'origin/master' into feat/list-retrievals
2021-06-04 20:49:01 +02:00
Anton Evangelatov
ed634bc3a4
rebuild docs
2021-06-04 17:06:55 +02:00
Travis Person
e89e0679b5
Interop genesis
2021-06-03 23:27:45 +00:00
Travis Person
96e67b80c3
Add interop network
2021-06-03 22:43:27 +00:00
Aayush Rajasekaran
4a321c6da2
Fix nerpa build
2021-06-02 19:19:32 -04:00
Aayush Rajasekaran
1f10600f13
Lotus version 1.10.0-rc1
2021-06-02 19:04:17 -04:00
Aayush Rajasekaran
55193bf36d
Merge branch 'release/v1.9.0' into asr/specs-update
2021-06-02 14:58:14 -04:00
Łukasz Magiera
e1dc7ad6eb
build: Use go embed for srs-inner-product.json
2021-06-02 15:12:26 +02:00
Łukasz Magiera
6d9779ecae
Merge remote-tracking branch 'origin/master' into feat/nv13-1.11
2021-06-02 15:07:13 +02:00
Cory Schwartz
e13dea7da8
use go:embed
2021-06-02 12:16:09 +02:00
Łukasz Magiera
dc642d0b7b
Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11
2021-06-01 21:06:58 +02:00
Łukasz Magiera
482e1110c2
precommit batcher: Improve error propagation
2021-06-01 14:35:30 +02:00
Łukasz Magiera
084b0e7f60
Handle collateral when submitting aggregated commits
2021-06-01 12:09:15 +02:00
Łukasz Magiera
3671f2a6ff
fix 2k build
2021-05-31 21:52:23 +02:00
Łukasz Magiera
ffa47659a1
Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11
2021-05-31 21:38:34 +02:00
Aayush Rajasekaran
7fca1c1ee7
Implement FIP-0015
2021-05-31 14:40:54 -04:00
hannahhoward
19b6dc8d1e
feat(cli): add a list retrievals command
...
Currently, there is no way to inspect retrievals on a client. This adds said command, allow with
corresponding APIs
2021-05-27 11:48:25 -07:00
Łukasz Magiera
1e4456138e
Merge master into feat/nv13
2021-05-27 12:28:20 +02:00
Aayush Rajasekaran
7714537239
Allow starting networks from arbitrary actor versions
2021-05-26 12:48:14 -04:00
Łukasz Magiera
43c62f4406
Revert "Allow starting networks from arbitrary actor versions"
2021-05-26 12:33:08 +02:00
Łukasz Magiera
930f2b4049
Merge pull request #6305 from filecoin-project/asr/genesis-actor
...
Allow starting networks from arbitrary actor versions
2021-05-26 10:19:23 +02:00
Aayush Rajasekaran
cf574ca9a1
Allow starting networks from arbitrary actor versions
2021-05-25 19:30:20 -04:00
Aayush Rajasekaran
d42eda4336
Use new actor tags
2021-05-25 13:02:49 -04:00
Łukasz Magiera
f5409845b5
Some review addressing
2021-05-25 16:07:45 +02:00
Dirk McCormick
714702f278
feat: allow 8MB sectors in devnet
2021-05-21 10:37:09 -06:00
Łukasz Magiera
1946d2ffd4
Wire up Precommit Batching
2021-05-18 17:37:52 +02:00
Jennifer Wang
ada7f97ba8
docsgen
2021-05-17 16:51:55 -04:00
Jennifer Wang
5af3af5a22
Merge branch 'release/v1.9.0' into releases
2021-05-17 16:16:34 -04:00
Łukasz Magiera
2afe725933
Get PreCommitting to work
2021-05-17 22:02:23 +02:00
Łukasz Magiera
578bef4f83
Update gen
2021-05-17 20:56:28 +02:00
Jennifer Wang
1cade911f6
docsgen
2021-05-17 14:08:36 -04:00
Jennifer Wang
96c3401231
bump the version to v1.9.0
2021-05-17 13:55:05 -04:00
Aayush Rajasekaran
9a6e601754
Merge pull request #5961 from filecoin-project/feat/stateless-offline-dealflow
...
Introduce stateless offline dealflow, bypassing the FSM/deallists
2021-05-17 12:35:39 -04:00
Jennifer Wang
a4b1dd0f88
docsgen
2021-05-14 22:26:11 -04:00
Jennifer Wang
7b95649cab
bump the version to v1.9.0-rc5
2021-05-14 22:22:30 -04:00
Jennifer Wang
3535c2dba8
docsgen
2021-05-13 18:02:54 -04:00
Jennifer Wang
1c4ddcd409
Pull the nerpa upgrade pr and update the version to rc4
2021-05-13 17:48:55 -04:00
Jennifer Wang
efb078947a
Upgrade nerpa to actor v4 around May 27th 1600 ET
2021-05-13 17:48:03 -04:00
Jennifer Wang
3910d7cb4a
Upgrade nerpa to actor v4 around May 27th 1600 ET
2021-05-13 16:04:38 -04:00
Łukasz Magiera
506f39b294
WIP: Integrate FIP0013
2021-05-11 22:10:29 -04:00
Peter Rabbitson
d54ed1b0c6
Merge remote-tracking branch 'origin/master' into feat/stateless-offline-dealflow
2021-05-11 04:54:22 +02:00
Aayush Rajasekaran
b5da2655dc
Introduce v5 actors
2021-05-10 19:44:28 -04:00
Jennifer Wang
0398e556d4
Bump the version
2021-05-07 11:09:06 -04:00
Jakub Sztandera
8d75da1629
Use MessagePrototype for check API
...
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
2021-05-07 15:30:05 +02:00
vyzo
e2d0047a2a
introduce message prototypes
...
This introduces message prototypes to applicable API endpoints, which
allows us to invert control of message sending and give the user a
chance to intervene with an interactive ui.
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
2021-05-07 15:30:05 +02:00
vyzo
91e774063e
implement MessagePool.CheckMessages
...
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
2021-05-07 15:30:04 +02:00