Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upload-client uploadDirectory, by default, sorts the provided files by file name to help the user call us in a way that is deterministic and minimizes cost #1173

Merged
merged 37 commits into from
Nov 29, 2023

Conversation

gobengo
Copy link
Contributor

@gobengo gobengo commented Nov 21, 2023

Motivation:

…ded files are sorted by file name to help the user call us in a way that is deterministic and saves them money
@gobengo gobengo requested review from travis and alanshaw November 21, 2023 01:15
@gobengo gobengo self-assigned this Nov 21, 2023
Copy link
Member

@alanshaw alanshaw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, this is not the PR I was expecting! I was expecting a tweak to automatically sort the files list and perhaps an option to disable that behaviour.

So something like this: storacha/files-from-path#27

My assumption was that the majority of users would want this to happen automatically and by pushing that responsibility onto users we're forcing a breaking change as well as adding an additional code task for them to sort the files themselves.

I've made some suggestions in the PR but on balance I think we should more preferably do the above (i.e. same as files-from-path) instead.

packages/upload-client/src/sharding.js Outdated Show resolved Hide resolved
packages/upload-client/src/index.js Outdated Show resolved Hide resolved
packages/upload-client/src/index.js Outdated Show resolved Hide resolved
packages/upload-client/src/sharding.js Outdated Show resolved Hide resolved
packages/upload-client/src/index.js Outdated Show resolved Hide resolved
gobengo and others added 19 commits November 28, 2023 09:09
Co-authored-by: Alan Shaw <alan.shaw@protocol.ai>
its better if we direct folks to the docs or the workshopper rather than
try and explain it all here.

License: MIT

Signed-off-by: Oli Evans <oli@protocol.ai>
@juliangruber reported an issue with our documented space creation flow
when the exported space access delegation doesn't specify a name and the
client doesn't specify one manually:

#1175

I think it's reasonable to require a name for spaces at some level, but
I think the access-client API is too low-level for this.
This PR allows you to get a list of subscriptions for your account plan,
and also get the current per space usage (I've not exposed the full
report yet since we don't have any UI that would use it).

e.g.

Getting subscriptions list:

```js
const account = Object.values(client.accounts())[0]
const subs = await account.plan.subscriptions()
for (const sub of subs.ok) {
  console.log(`ID: ${sub.subscription}`)
  console.log(`Consumers: ${sub.consumers.join(', ')}`)
  console.log(`Provider: ${sub.provider}`)
}
```

Getting usage:

```js
const space = client.spaces()[0]
const usage = await space.usage.get()
console.log(`${space.did()}: ${usage.ok} bytes`)
```

So, you no longer have to invoke capabilities directly like this:

https://github.com/web3-storage/w3cli/blob/ca21f6736fb8c2180d3634f40931b91e4f0bb964/index.js#L553-L571
🤖 I have created a release *beep* *boop*
---


##
[12.0.3](capabilities-v12.0.2...capabilities-v12.0.3)
(2023-11-22)


### Fixes

* package metadata
([#1161](#1161))
([b8a1cc2](b8a1cc2))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: Alan Shaw <alan.shaw@protocol.ai>
🤖 I have created a release *beep* *boop*
---


##
[12.0.2](upload-client-v12.0.1...upload-client-v12.0.2)
(2023-11-22)


### Fixes

* package metadata
([#1161](#1161))
([b8a1cc2](b8a1cc2))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: Alan Shaw <alan.shaw@protocol.ai>
🤖 I have created a release *beep* *boop*
---


##
[18.0.3](access-v18.0.2...access-v18.0.3)
(2023-11-22)


### Fixes

* don't error when we can't figure out a name for a space
([#1177](#1177))
([a31f667](a31f667))
* package metadata
([#1161](#1161))
([b8a1cc2](b8a1cc2))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: Alan Shaw <alan.shaw@protocol.ai>
This was implemented in `capabilities` and `upload-api` but for some
reason was never hooked in the clients.
🤖 I have created a release *beep* *boop*
---


##
[12.1.0](upload-client-v12.0.2...upload-client-v12.1.0)
(2023-11-25)


### Features

* add store.get and upload.get to clients
([#1178](#1178))
([d1be42a](d1be42a))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop*
---


##
[11.1.0](w3up-client-v11.0.2...w3up-client-v11.1.0)
(2023-11-25)


### Features

* add store.get and upload.get to clients
([#1178](#1178))
([d1be42a](d1be42a))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: Alan Shaw <alan.shaw@protocol.ai>
These were previously not exported from `w3up-client` 😢
🤖 I have created a release *beep* *boop*
---


##
[11.1.1](w3up-client-v11.1.0...w3up-client-v11.1.1)
(2023-11-27)


### Fixes

* export filecoin types
([#1185](#1185))
([9b1f526](9b1f526))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop*
---


##
[11.1.2](w3up-client-v11.1.1...w3up-client-v11.1.2)
(2023-11-27)


### Fixes

* export ProgressStatus
([ab29c05](ab29c05))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
we rely on this in console to allow users to cancel login
🤖 I have created a release *beep* *boop*
---


##
[11.1.3](w3up-client-v11.1.2...w3up-client-v11.1.3)
(2023-11-28)


### Fixes

* thread abort signal through login functions
([#1189](#1189))
([8e908a9](8e908a9))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
Conveniently store the timestamp of the oldest piece in table, so that
when monitoring aggregates time to deal for alerts, we do not need to
read buffer, decode it, and find out it every time a CRON runs.
Running batches of concurrency 20 in my machine handled in 2.40s a batch
of updates. A page query of `4046` in parallel trying to crawl the
entire chain was being too much and mostly the CRON would timeout before
things getting updated, causing cron to be struggling to move on
it-dag-house and others added 5 commits November 28, 2023 14:34
🤖 I have created a release *beep* *boop*
---


##
[3.1.3](filecoin-client-v3.1.2...filecoin-client-v3.1.3)
(2023-11-28)


### Fixes

* package metadata
([#1161](#1161))
([b8a1cc2](b8a1cc2))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop*
---


##
[4.2.0](filecoin-api-v4.1.2...filecoin-api-v4.2.0)
(2023-11-28)


### Features

* aggregator keeping oldest piece ts
([#1188](#1188))
([97a7def](97a7def))


### Fixes

* package metadata
([#1161](#1161))
([b8a1cc2](b8a1cc2))
* storefront events cron with max concurrency
([#1191](#1191))
([11010c9](11010c9))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: Vasco Santos <santos.vasco10@gmail.com>
🤖 I have created a release *beep* *boop*
---


##
[7.3.4](upload-api-v7.3.3...upload-api-v7.3.4)
(2023-11-28)


### Fixes

* package metadata
([#1161](#1161))
([b8a1cc2](b8a1cc2))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: Vasco Santos <santos.vasco10@gmail.com>
@gobengo gobengo changed the title feat: upload-client uploadDirectory, by default, checks to ensure the provided files are sorted by file name to help the user call us in a way that is deterministic and saves them money feat: upload-client uploadDirectory, by default, sorts the provided files by file name to help the user call us in a way that is deterministic and msinimizes cost Nov 28, 2023
@gobengo gobengo changed the title feat: upload-client uploadDirectory, by default, sorts the provided files by file name to help the user call us in a way that is deterministic and msinimizes cost feat: upload-client uploadDirectory, by default, sorts the provided files by file name to help the user call us in a way that is deterministic and minimizes cost Nov 28, 2023
@gobengo gobengo requested a review from alanshaw November 28, 2023 23:01
@gobengo
Copy link
Contributor Author

gobengo commented Nov 28, 2023

My assumption was that the majority of users would want this to happen automatically and by pushing that responsibility onto users we're forcing a breaking change as well as adding an additional code task for them to sort the files themselves.

@alanshaw cool. I updated to make this match the expectations you shared.

@gobengo gobengo requested a review from olizilla November 29, 2023 00:07
Copy link
Member

@alanshaw alanshaw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️ Some minor feedback but nothing blocking.

packages/upload-client/src/index.js Outdated Show resolved Hide resolved
* @param {FileLike} b
* @param {(file: FileLike) => string} getSortKey
*/
export const defaultFileComparator = (a, b, getSortKey = (a) => a.name) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor, but getSortKey is actually returning a value not a key.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah I was using key in the sense of this https://docs.python.org/3/howto/sorting.html#key-functions
but I think you mean it like the 'key/value' of the File object, which is probably a more reasonable interpretation in this context than what I meant. I will rename it to getSortValue because that seems at least slightly less likely to cause confusion than what I did

@@ -258,7 +258,10 @@ export interface UploadOptions
export interface UploadDirectoryOptions
extends UploadOptions,
UnixFSDirectoryEncoderOptions,
UploadProgressTrackable {}
UploadProgressTrackable {
// whether the directory files have already been ordered in a custom way. indicates that the upload must not use a different order than the one provided.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be /** ... */ style comment in order to expose this helpful info to consumers.

@gobengo gobengo merged commit 8cd2555 into main Nov 29, 2023
4 checks passed
@gobengo gobengo deleted the 1172-uploadDirectory-sorted branch November 29, 2023 19:18
gobengo pushed a commit that referenced this pull request Dec 1, 2023
🤖 I have created a release *beep* *boop*
---


##
[12.2.0](upload-client-v12.1.0...upload-client-v12.2.0)
(2023-11-29)


### Features

* upload-client uploadDirectory, by default, sorts the provided files by
file name to help the user call us in a way that is deterministic and
minimizes cost
([#1173](#1173))
([8cd2555](8cd2555))


### Fixes

* floating promises and add no-floating-promises to eslint-config-w3up
([#1198](#1198))
([1b8c5aa](1b8c5aa))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
vasco-santos added a commit that referenced this pull request Jan 15, 2024
🤖 I have created a release *beep* *boop*
---


##
[4.3.1](filecoin-api-v4.3.0...filecoin-api-v4.3.1)
(2024-01-15)


### ⚠ BREAKING CHANGES

* return allocated bytes in `store/add` receipt
([#1213](#1213))

### Features

* return allocated bytes in `store/add` receipt
([#1213](#1213))
([5d52e44](5d52e44))
* upload-client uploadDirectory, by default, sorts the provided files by
file name to help the user call us in a way that is deterministic and
minimizes cost
([#1173](#1173))
([8cd2555](8cd2555))


### Fixes

* avoid duplicates on aggregator buffer concat
([#1259](#1259))
([9e64bab](9e64bab))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

---------

Co-authored-by: Vasco Santos <santos.vasco10@gmail.com>
Peeja added a commit to storacha/upload-service that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## 1.0.0 (2024-12-02)


### ⚠ BREAKING CHANGES

* **upload-api:** integrate agent store for idempotence &
invocation/receipt persistence
([storacha#1444](https://github.com/storacha/upload-service/issues/1444))
* dataStore in storefront renamed to contentStore
* not possible to skip submit queue on storefront service anymore
* return allocated bytes in `store/add` receipt
([storacha#1213](https://github.com/storacha/upload-service/issues/1213))

### Features

* add blob protocol to upload-client
([storacha#1425](https://github.com/storacha/upload-service/issues/1425))
([49aef56](49aef56))
* add support to prepend pieces while buffering to aggregate
([storacha#1301](https://github.com/storacha/upload-service/issues/1301))
([dff1846](dff1846))
* add usage/report capability
([storacha#1079](https://github.com/storacha/upload-service/issues/1079))
([6418b4b](6418b4b))
* aggregator keeping oldest piece ts
([storacha#1188](https://github.com/storacha/upload-service/issues/1188))
([97a7def](97a7def))
* api waits for trigger filecoin pipeline from the client
([storacha#1332](https://github.com/storacha/upload-service/issues/1332))
([421bacb](421bacb))
* filecoin info
([storacha#1091](https://github.com/storacha/upload-service/issues/1091))
([adb2442](adb2442))
* **filecoin-api:** allow custom hashing function to be passed to
aggregate builder
([storacha#1553](https://github.com/storacha/upload-service/issues/1553))
([e2653d4](e2653d4))
* **filecoin-api:** paginated queries
([storacha#1521](https://github.com/storacha/upload-service/issues/1521))
([25ed7d7](25ed7d7))
* move aggregate information out of deals in filecoin/info
([storacha#1192](https://github.com/storacha/upload-service/issues/1192))
([18dc590](18dc590))
* return allocated bytes in `store/add` receipt
([storacha#1213](https://github.com/storacha/upload-service/issues/1213))
([5d52e44](5d52e44))
* router ([#11](#11))
([c810735](c810735))
* upgrade ucanto/transport to 9.1.0 in all packages to get more verbose
errors from HTTP transport on non-ok response
([storacha#1312](https://github.com/storacha/upload-service/issues/1312))
([d6978d7](d6978d7))
* **upload-api:** integrate agent store for idempotence &
invocation/receipt persistence
([storacha#1444](https://github.com/storacha/upload-service/issues/1444))
([c9bf33e](c9bf33e))
* upload-client uploadDirectory, by default, sorts the provided files by
file name to help the user call us in a way that is deterministic and
minimizes cost
([storacha#1173](https://github.com/storacha/upload-service/issues/1173))
([8cd2555](8cd2555))
* use digest in `blob/accept` location commitment
([storacha#1480](https://github.com/storacha/upload-service/issues/1480))
([ade45eb](ade45eb))


### Fixes

* aggregate offer invocation cid wrong
([storacha#1063](https://github.com/storacha/upload-service/issues/1063))
([90a5a4d](90a5a4d))
* avoid duplicates on aggregator buffer concat
([storacha#1259](https://github.com/storacha/upload-service/issues/1259))
([9e64bab](9e64bab))
* check service did in w3filecoin
([storacha#1476](https://github.com/storacha/upload-service/issues/1476))
([11b00bf](11b00bf))
* configure max pieces
([storacha#1566](https://github.com/storacha/upload-service/issues/1566))
([71674ed](71674ed))
* dealer offer store keys without space
([storacha#1066](https://github.com/storacha/upload-service/issues/1066))
([301f411](301f411))
* drop filecoin storefront skip submit queue option
([storacha#1371](https://github.com/storacha/upload-service/issues/1371))
([1114383](1114383))
* enable storefront signer to be different from main service signer
([storacha#1072](https://github.com/storacha/upload-service/issues/1072))
([21ded3c](21ded3c))
* filecoin test use blob
([storacha#1422](https://github.com/storacha/upload-service/issues/1422))
([359c0b7](359c0b7))
* **filecoin-api:** parallel put to piece accept queue
([storacha#1560](https://github.com/storacha/upload-service/issues/1560))
([e7cbb6d](e7cbb6d))
* issue where typedoc docs would only show full docs for w3up-client
([storacha#1141](https://github.com/storacha/upload-service/issues/1141))
([0b8d3f3](0b8d3f3))
* lint ([storacha#1095](https://github.com/storacha/upload-service/issues/1095))
([f9cc770](f9cc770))
* migrate repo
([storacha#1389](https://github.com/storacha/upload-service/issues/1389))
([475a287](475a287))
* package metadata
([storacha#1161](https://github.com/storacha/upload-service/issues/1161))
([b8a1cc2](b8a1cc2))
* receipt chain has wrong CID because no expiration is set
([storacha#1060](https://github.com/storacha/upload-service/issues/1060))
([dfb46d8](dfb46d8))
* rename blob and index client capabilities
([storacha#1478](https://github.com/storacha/upload-service/issues/1478))
([17e3a31](17e3a31))
* repo URLs
([storacha#1550](https://github.com/storacha/upload-service/issues/1550))
([e02ddf3](e02ddf3))
* return piece accept receipt error
([storacha#1512](https://github.com/storacha/upload-service/issues/1512))
([05283cf](05283cf))
* revert enable storefront signer to be different from main service
signer ([storacha#1075](https://github.com/storacha/upload-service/issues/1075))
([80cdde0](80cdde0))
* storefront content store rename and separation for test
([storacha#1409](https://github.com/storacha/upload-service/issues/1409))
([05e5db3](05e5db3))
* storefront events cron with max concurrency
([storacha#1191](https://github.com/storacha/upload-service/issues/1191))
([11010c9](11010c9))
* upgrade ucanto core
([storacha#1127](https://github.com/storacha/upload-service/issues/1127))
([5ce4d22](5ce4d22))
* upgrade ucanto libs and format filecoin api
([storacha#1359](https://github.com/storacha/upload-service/issues/1359))
([87ca098](87ca098))
* upload API test fixes
([6b0d72d](6b0d72d))
* use one-webcrypto from npm
([storacha#1525](https://github.com/storacha/upload-service/issues/1525))
([9345c54](9345c54))


### Other Changes

* Add `pnpm dev` to watch-build all packages
([storacha#1533](https://github.com/storacha/upload-service/issues/1533))
([07970ef](07970ef))
* appease linter
([782c6d0](782c6d0))
* **main:** release filecoin-api 4.0.2
([storacha#1061](https://github.com/storacha/upload-service/issues/1061))
([5918ff2](5918ff2))
* **main:** release filecoin-api 4.0.3
([storacha#1064](https://github.com/storacha/upload-service/issues/1064))
([ef4ce7a](ef4ce7a))
* **main:** release filecoin-api 4.0.4
([storacha#1067](https://github.com/storacha/upload-service/issues/1067))
([c3ed3b9](c3ed3b9))
* **main:** release filecoin-api 4.0.5
([storacha#1073](https://github.com/storacha/upload-service/issues/1073))
([9cf2fc0](9cf2fc0))
* **main:** release filecoin-api 4.0.6
([storacha#1077](https://github.com/storacha/upload-service/issues/1077))
([40d0e7a](40d0e7a))
* **main:** release filecoin-api 4.1.0
([storacha#1085](https://github.com/storacha/upload-service/issues/1085))
([9b752f9](9b752f9))
* **main:** release filecoin-api 4.1.1
([storacha#1133](https://github.com/storacha/upload-service/issues/1133))
([3621b42](3621b42))
* **main:** release filecoin-api 4.1.2
([storacha#1148](https://github.com/storacha/upload-service/issues/1148))
([fa6405d](fa6405d))
* **main:** release filecoin-api 4.2.0
([storacha#1164](https://github.com/storacha/upload-service/issues/1164))
([dfdf762](dfdf762))
* **main:** release filecoin-api 4.3.0
([storacha#1194](https://github.com/storacha/upload-service/issues/1194))
([a1aa231](a1aa231))
* **main:** release filecoin-api 4.3.1
([storacha#1205](https://github.com/storacha/upload-service/issues/1205))
([7f42f39](7f42f39))
* **main:** release filecoin-api 4.4.0
([storacha#1303](https://github.com/storacha/upload-service/issues/1303))
([bb74ffc](bb74ffc))
* **main:** release filecoin-api 4.5.0
([storacha#1314](https://github.com/storacha/upload-service/issues/1314))
([d31ff06](d31ff06))
* **main:** release filecoin-api 4.6.0
([storacha#1346](https://github.com/storacha/upload-service/issues/1346))
([4b166fd](4b166fd))
* **main:** release filecoin-api 4.6.1
([storacha#1363](https://github.com/storacha/upload-service/issues/1363))
([efcb912](efcb912))
* **main:** release filecoin-api 5.0.0
([storacha#1384](https://github.com/storacha/upload-service/issues/1384))
([cb5b628](cb5b628))
* **main:** release filecoin-api 5.0.1
([storacha#1398](https://github.com/storacha/upload-service/issues/1398))
([2e3ef61](2e3ef61))
* **main:** release filecoin-api 6.0.0
([storacha#1414](https://github.com/storacha/upload-service/issues/1414))
([939e839](939e839))
* **main:** release filecoin-api 6.0.1
([storacha#1424](https://github.com/storacha/upload-service/issues/1424))
([f8c6c1d](f8c6c1d))
* **main:** release filecoin-api 7.0.0
([storacha#1430](https://github.com/storacha/upload-service/issues/1430))
([604d300](604d300))
* **main:** release filecoin-api 7.1.0
([storacha#1481](https://github.com/storacha/upload-service/issues/1481))
([9d38080](9d38080))
* **main:** release filecoin-api 7.1.1
([storacha#1513](https://github.com/storacha/upload-service/issues/1513))
([d4f5f45](d4f5f45))
* **main:** release filecoin-api 7.2.0
([storacha#1522](https://github.com/storacha/upload-service/issues/1522))
([0aebf9f](0aebf9f))
* **main:** release filecoin-api 7.2.1
([storacha#1528](https://github.com/storacha/upload-service/issues/1528))
([5b8e148](5b8e148))
* **main:** release filecoin-api 7.3.0
([storacha#1540](https://github.com/storacha/upload-service/issues/1540))
([77b31e9](77b31e9))
* **main:** release filecoin-api 7.3.1
([storacha#1561](https://github.com/storacha/upload-service/issues/1561))
([61d408a](61d408a))
* **main:** release filecoin-api 7.3.2
([storacha#1567](https://github.com/storacha/upload-service/issues/1567))
([534d3be](534d3be))
* package renames
([0f797ed](0f797ed))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants