mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
* Remove MDS and replace it with Controller This commit removes the MDS layer (and package) and shifts Controller package into its place. * add pprof/fgprof to serverless http router --------- Co-authored-by: Matthew Jaffee <jaffee@pilosa.com>
16 lines
311 B
Go
16 lines
311 B
Go
package poller
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/featurebasedb/featurebase/v3/dax"
|
|
"github.com/featurebasedb/featurebase/v3/logger"
|
|
)
|
|
|
|
type Config struct {
|
|
AddressManager dax.AddressManager
|
|
NodeService dax.NodeService
|
|
NodePoller NodePoller
|
|
PollInterval time.Duration
|
|
Logger logger.Logger
|
|
}
|