the-algorithm/src/scala/com/twitter/simclusters_v2/scio/multi_type_graph/multi_type_graph_sims/RightNodeSimHashScioApp.scala
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

44 lines
1.8 KiB
Scala

package com.twitter.simclusters_v2.scio
package multi_type_graph.multi_type_graph_sims
import com.twitter.dal.client.dataset.SnapshotDALDataset
import com.twitter.simclusters_v2.hdfs_sources.RightNodeSimHashScioScalaDataset
import com.twitter.simclusters_v2.thriftscala.RightNodeSimHashSketch
/**
Build:
./bazel bundle src/scala/com/twitter/simclusters_v2/scio/multi_type_graph/multi_type_graph_sims:multi-type-graph-sim-hash-scio-adhoc-app
To kick off an adhoc run:
bin/d6w create \
${GCP_PROJECT_NAME}/us-central1/multi-type-graph-sim-hash-scio-adhoc-app \
src/scala/com/twitter/simclusters_v2/scio/multi_type_graph/multi_type_graph_sims/sim-hash-scio-adhoc.d6w \
--jar dist/multi-type-graph-sim-hash-scio-adhoc-app.jar \
--bind=profile.project=${GCP_PROJECT_NAME} \
--bind=profile.user_name=${USER} \
--bind=profile.date="2021-12-01" \
--bind=profile.machine="n2d-highmem-16" --ignore-existing
*/
object RightNodeSimHashScioAdhocApp extends RightNodeSimHashScioBaseApp {
override val isAdhoc: Boolean = true
override val rightNodeSimHashSnapshotDataset: SnapshotDALDataset[RightNodeSimHashSketch] =
RightNodeSimHashScioAdhocScalaDataset
}
/**
To deploy the job:
bin/d6w schedule \
${GCP_PROJECT_NAME}/us-central1/multi-type-graph-sim-hash-scio-batch-app \
src/scala/com/twitter/simclusters_v2/scio/multi_type_graph/multi_type_graph_sims/sim-hash-scio-batch.d6w \
--bind=profile.project=${GCP_PROJECT_NAME} \
--bind=profile.user_name=recos-platform \
--bind=profile.date="2021-12-01" \
--bind=profile.machine="n2d-highmem-16"
*/
object RightNodeSimHashScioBatchApp extends RightNodeSimHashScioBaseApp {
override val isAdhoc: Boolean = false
override val rightNodeSimHashSnapshotDataset: SnapshotDALDataset[RightNodeSimHashSketch] =
RightNodeSimHashScioScalaDataset
}