サンプル(変換ステージ)
説明
前のステージの結果から非決定的サンプルを返します。
サポートされているモードは次の 2 つです。
documents:n個のドキュメントをランダムに選択します。percent: ドキュメントのnパーセントをランダムに選択します。
例
ウェブ
let results; // Get a sample of 100 documents in a database results = await execute(db.pipeline() .database() .sample(100) ); // Randomly shuffle a list of 3 documents results = await execute(db.pipeline() .documents([ doc(db, "cities", "SF"), doc(db, "cities", "NY"), doc(db, "cities", "DC"), ]) .sample(3) );
Swift
var results: Pipeline.Snapshot // Get a sample of 100 documents in a database results = try await db.pipeline() .database() .sample(count: 100) .execute() // Randomly shuffle a list of 3 documents results = try await db.pipeline() .documents([ db.collection("cities").document("SF"), db.collection("cities").document("NY"), db.collection("cities").document("DC"), ]) .sample(count: 3) .execute()
Kotlin
Android
var results: Task<Pipeline.Snapshot> // Get a sample of 100 documents in a database results = db.pipeline() .database() .sample(100) .execute() // Randomly shuffle a list of 3 documents results = db.pipeline() .documents( db.collection("cities").document("SF"), db.collection("cities").document("NY"), db.collection("cities").document("DC") ) .sample(3) .execute()
Java
Android
Task<Pipeline.Snapshot> results; // Get a sample of 100 documents in a database results = db.pipeline() .database() .sample(100) .execute(); // Randomly shuffle a list of 3 documents results = db.pipeline() .documents( db.collection("cities").document("SF"), db.collection("cities").document("NY"), db.collection("cities").document("DC") ) .sample(3) .execute();
Python
# Get a sample of 100 documents in a database results = client.pipeline().database().sample(100).execute() # Randomly shuffle a list of 3 documents results = ( client.pipeline() .documents( client.collection("cities").document("SF"), client.collection("cities").document("NY"), client.collection("cities").document("DC"), ) .sample(3) .execute() )
Java
// Get a sample of 100 documents in a database Pipeline.Snapshot results1 = firestore.pipeline().database().sample(100).execute().get(); // Randomly shuffle a list of 3 documents Pipeline.Snapshot results2 = firestore .pipeline() .documents( firestore.collection("cities").document("SF"), firestore.collection("cities").document("NY"), firestore.collection("cities").document("DC")) .sample(3) .execute() .get();
Go
// Get a sample of 100 documents in a database results1, err := client.Pipeline().Database().Sample(firestore.WithDocLimit(100)).Execute(ctx).Results().GetAll() if err != nil { fmt.Fprintf(w, "GetAll failed: %v", err) return err } // Randomly shuffle a list of 3 documents results2, err := client.Pipeline(). Documents([]*firestore.DocumentRef{ client.Collection("cities").Doc("SF"), client.Collection("cities").Doc("NY"), client.Collection("cities").Doc("DC"), }). Sample(firestore.WithDocLimit(3)). Execute(ctx).Results().GetAll() if err != nil { fmt.Fprintf(w, "GetAll failed: %v", err) return err }
モード
ドキュメント モード
documents モードでは、入力から最大 n 個のドキュメントがランダムに選択されます。各ドキュメント(およびドキュメントの順序)が選択される確率は等しくなります。これを実現するには、Firestore がすべてのドキュメントをスキャンして処理する必要があるため、高コストなオペレーションになる可能性があります。
コレクションの例:
Node.js
await db.collection("cities").doc("SF").set({name: "San Francsico", state: "California"});
await db.collection("cities").doc("NYC").set({name: "New York City", state: "New York"});
await db.collection("cities").doc("CHI").set({name: "Chicago", state: "Illinois"});
ドキュメント モードのサンプル ステージを使用すると、このコレクションから非決定的な結果のサブセットを取得できます。
Node.js
const sampled = await db.pipeline()
.collection("/cities")
.sample(1)
.execute();
この例では、ランダムに選択された 1 つのドキュメントのみがランダムに返されます。
{ name: "New York City", state: "New York" }
提供された数が返されたドキュメントの合計数より大きい場合、すべてのドキュメントがランダムな順序で返されます。
Node.js
const sampled = await db.pipeline()
.collection("/cities")
.sample(5)
.execute();
結果として、次のドキュメントが生成されます。
{ name: "New York City", state: "New York" }
{ name: "Chicago", state: "Illinois" }
{ name: "San Francisco", state: "California" }
パーセント モード
percent モードでは、入力からすべてのドキュメントの n パーセントを選択しようとします。これにより、ステージで約 # documents * percent / 100 個のドキュメントが生成されます。documents モードと同様に、Firestore は各ドキュメントが同じ確率で返されるようにします。ただし、Firestore はすべてのドキュメントをスキャンして処理する必要があるため、結果セットが小さくても、このオペレーションが高コストになる可能性があります。
documents モードとは異なり、ここでは順序はランダムではなく、既存のドキュメントの順序が保持されます。この入力値は、0.0~1.0 の範囲の double 値でなければなりません。
コレクションの例:
Node.js
await db.collection("cities").doc("SF").set({name: "San Francsico", state: "California"});
await db.collection("cities").doc("NYC").set({name: "New York City", state: "New York"});
await db.collection("cities").doc("CHI").set({name: "Chicago", state: "Illinois"});
await db.collection("cities").doc("ATL").set({name: "Atlanta", state: "Georgia"});
パーセント モードのサンプル ステージを使用すると、collection(...) ステージから(平均して)50% のドキュメントを取得できます。
Node.js
const sampled = await db.pipeline()
.collection("/cities")
.sample({ percent: 0.5 })
.execute();
これにより、cities コレクションのドキュメントの(平均)50% の非決定的サンプルが生成されます。出力例の 1 つを次に示します。
{ name: "New York City", state: "New York" }
{ name: "Chicago", state: "Illinois" }
パーセント モードでは、各ドキュメントが選択される確率は同じであるため、ドキュメントが 1 つも返されない場合や、すべてのドキュメントが返される場合があります。
クライアントの例
ウェブ
// Get a sample of on average 50% of the documents in the database const results = await execute(db.pipeline() .database() .sample({ percentage: 0.5 }) );
Swift
// Get a sample of on average 50% of the documents in the database let results = try await db.pipeline() .database() .sample(percentage: 0.5) .execute()
Kotlin
Android
// Get a sample of on average 50% of the documents in the database val results = db.pipeline() .database() .sample(SampleStage.withPercentage(0.5)) .execute()
Java
Android
// Get a sample of on average 50% of the documents in the database Task<Pipeline.Snapshot> results = db.pipeline() .database() .sample(SampleStage.withPercentage(0.5)) .execute();
Python
from google.cloud.firestore_v1.pipeline_stages import SampleOptions # Get a sample of on average 50% of the documents in the database results = ( client.pipeline().database().sample(SampleOptions.percentage(0.5)).execute() )
Java
// Get a sample of on average 50% of the documents in the database Pipeline.Snapshot results = firestore.pipeline().database().sample(Sample.withPercentage(0.5)).execute().get();
Go
// Get a sample of on average 50% of the documents in the database snapshot := client.Pipeline(). Database(). Sample(firestore.WithPercentage(0.5)). Execute(ctx)