Spring boot cassandra docker example. Ensure your Cassandra database is installed and configured.
Spring boot cassandra docker example. Ensure your Cassandra database is installed and configured.
Spring boot cassandra docker example In docker Spring Boot example with Spring Data Cassandra Reactive using Kotlin as programming language. Create a Spring Boot application. What is Sep 8, 2018 · By Daniel Newton. 1 release the Spring team announced Improved one in the docker-compose files and another one in the java classes. The goal of the project is to demonstrate the integration of Spring Boot and Cassandra in the scope of Docker containers. /bin/cqlsh from the Cassandra installation directory. Ensure your Cassandra database is installed and configured. properties. Stars. parameters label to the service. In this section, we will discuss about the Spring Boot Cassandra CRUD examples in detail. Configure the Apache Cassandra environment. Setting up Docker for Cassandra , kafka and redis. Oct 1, 2022 · This guide walks you through the process of using modules Spring Data Cassandra and Spring Boot to work with the Cassandra database (such as Astra DB). Problem which is every time i need to up the micro services manually. yml reference. In this one, we’ll expose a Cassandra database using a REST API. boot</groupId> <artifactId>spring-boot-starter-data Before you can build the application, you need to set up a Cassandra database. port=9042 Tried many variations. Build Docker Image: Open a terminal in the project directory and run the following command to build the Docker image: 5. Start to working with the cluster with cqlsh … Jan 29, 2024 · In this article, we learned about the new Docker Compose support in Spring Boot 3. jdbc. 0) conencting to cassandra(spring cassandra 3. You can just remove your configuration class and everything will work just fine. 0 version. How to containerize Spring Boot applications using Docker. Our favorite IDE; Maven 3. You can run it with the next docker image: $ docker run --name cassandra bitnami/cassandra:latest A simple Spring Boot Application and Cassandra DB integration. After generating your project, unzip it and open it in your IDE. As you know or not, Spring Web-Flux is a reactive approach for the Spring Boot based applications. Build Application Image. 0 To make it easier to create optimized Docker images, Spring Boot supports adding a layer index file to the jar. If you need to reach your node from outside of the internal docker network you need to properly expose the appropriate ports to the docker host. This time around, I am going to tackle converting a Spring and Cassandra application to use containers instead of running locally on the host machine. We saw how to set up and create a Spring Boot 3 application with it. - techtter/springboot-cassandra-integration Here's a basic example: FROM openjdk:11-jre-slim VOLUME /tmp ADD target/your-spring-boot-app. Feb 17, 2020 · $ cd project $ sudo docker build -t spring-boot:1. GitHub Link: https://github. target. It provides a list of layers and the parts of the jar that should be contained within them. Si ya se esta familiarizado con Spring Data la integración es bastante sencilla, tan solo hará falta conocer algunos parámetros para configurar la conexión con Cassandra. 0 (we’re up to 3. yaml in our source folder, which defines a PostgreSQL database, Spring Boot will run the docker-compose. io/. Apr 29, 2023 · To test our Spring Boot app with Spring Data, we often use an embedded in-memory database like H2. 2 watching Forks. springframework. Apr 1, 2019 · The following link points to a tutorial which helped to integrate cassandra properly into a spring boot application. Although this is a very valid approach on occasion, we may want to test against a real database as much as possible. For more information, see the Installing Cassandra documentation. docker. Apache Cassandra is an open-source NoSQL data store optimized for fast reads and fast writes in large datasets. Per the title it isnt using spring boot or spring data cassandra. In this video you will learn how to build REST API microservices with Spring Boot, May 8, 2023 · Connect to the Cassandra database by running the command . docker daemon is up) and exposes the correct port. For example, a repository will give you a set of CRUD In this tutorial, we will: Create two microservices using Spring Boot: employee-service and department-service. The latest release 1. I am still keeping it simple at this point. 2. This same check works for me per my original post the problem is when spring data creates the channel not the raw cassandra driver. sh to create keyspace when environment variable CASSANDRA_KEYSPACE is set. In the next section, we’ll see how we can use Azure Cosmos DB in a Spring Boot application. Prerequisites. properties") public class DaoConfig { @Bean public CassandraSessionManager getCassandraSessionManager() { return new CassandraSessionManager(); } } Aug 12, 2023 · This tutorial will help you to understand how to map a Cassandra composite key using Spring Data JPA. Tag first before push to docker hub. Apis also support custom finder methods such as find by published status or by title. 2 stars Watchers. Docker. Following Spring Boot’s ease of development, this support is handy and already has good features. Integrate ScyllaDB with Spring¶ Spring is a java framework for creating easy to use web services. In this post, I’ll be continuing my journey of learning Docker. contact-points=localhost spring. xml, if the Spring Data Cassandra dependency is not included, add the Nov 27, 2020 · I am new to Cassandra and was trying to set up a springboot project(version 2. yml file and execute in the project directory: docker-compose up -d After that you need to run first supervisor it will creates necessary database( test ) and tables for quartz. compose. This topic covers best practices, tutorials, and examples for packaging Spring Boot applications into Docker containers, enabling easy deployment and scalability. 0. docker run -p 8084:8084 spring-cassandra-crud-example Contributing Please read CHANGELOG. Key takeaways: Containers bring huge benefits around portability and scalability; Docker Compose links components easily with networking Nov 24, 2024 · Build a Docker image for our Spring Boot app; Launch a Cassandra cluster using official images; Use Docker networking to connect containers; Configure Spring Data Cassandra for connectivity; Run containers using Docker Compose; Let‘s explore each step… 1. java shell bash docker dockerfile cassandra spring-boot maven docker-compose junit pom java-8 shell-script cql bash-script Jul 19, 2020 · Spring Boot application, Cassandra databases can be run as microservices using Docker Compose. md for details on our code of conduct, and the process for submitting pull requests to us. I have attached my project structure here. 0 $ sudo docker image push your_id/spring-boot:1. What is Testcontainers? Testcontainers Jan 25, 2024 · This is very simple. I need to create micro services and need to run by docker. Allows to modify the product pricinf information in local cassandra cluster after verifying that its a valid Redsky supported product. 0 forks Report repository Releases Spring Boot + Apache Cassandra example app. 99. This architecture allows for easy scaling and isolation of services, making it perfect for microservices applications. In your pom. In the following video you will learn how to integrate or connect Spring Boot Application with Cassandra data base. May 11, 2020 · I have some issues to dockerize my Spring boot Cassandra application. One of the patterns used in microservice creation is choreography, where Kafka, using the event sourcing pattern, can be of great help. Wrap Up. Feb 1, 2016 · Spring Boot; REST JAX-RS and Jersey Proxy Client; HATEOAS Example; Sprind Data JPA with H2 Database; Spring Data NoSQL with Apache Cassandra (from Docker for App, embedded for Tests) Spring Data REST; Tests with Spock; Gradle Kotlin Script with multi modules run main method from SpringBootCassandraCrudApplication. Metrics That Show Impact: The best resumes quantify achievements. Using docker compose you can export a container port using the ports field Working with a microservices API gateway can greatly reduce coding efforts, make applications far more efficient, and decrease errors all at that same time. Then we show a couple of options that use build plugins (for Maven and Gradle) instead of docker. cassandra. lifecycle-management property. For example am having 4 micro services and i just up this services manually. Creating a Spring Boot project: To create a new Spring Boot project, follow these steps: You will learn how to integrate Spring Data with Cassandra Database and create CRUD operations and dockerize this application. Use cqlsh to interact with the Cassandra database: Integrating Cassandra with Spring Boot Step 1: Create a New Spring Boot Project. You can run the below command to spin up a local Cassandra server container. 168. Create a spring boot application with spring-boot-starter-web, lombok dependencies. First, we need to package our Java business logic into a To run this project you need a Cassandra data base. com Nov 24, 2024 · Build a Docker image for our Spring Boot app; Launch a Cassandra cluster using official images; Use Docker networking to connect containers; Configure Spring Data Cassandra for connectivity; Run containers using Docker Compose; Let‘s explore each step… 1. Mar 15, 2024 · Last Updated on March 15th, 2024. <dependency> <groupId>org. open a terminal and run the following commands to ensure that you have valid versions of Java and Maven installed: $ java -version java version "1. We walked through containerizing a realistic Spring Boot web app using Cassandra for data and Redis for caching. PROJECT SETUP. Postman. 5. keyspace-name=gun_violence_db spring. Upon application startup, Spring Boot automatically connects to a Cassandra database. yaml when starting the app and automatically create a DataSource in our application linked to the said database. 2+ JDK 11 or later; 2. You'll learn how to create Dockerfiles tailored for Spring Boot, manage dependencies, optimize container images, and orchestrate multi-container applications using Docker Compose Full demo application that interacts with Apache Cassandra using the Java DataStax driver 4. 1) using docker. xml The Application Properties are shown here: Cassandra's configuration is declared in this file. How to enable inter-service communication using Feign Client. For intensive a complete web service example with Spring Boot, you can check out my other repository which is spring-boot-restful-web-service Learn about Amazon Keyspaces code examples and developer tools available on GitHub, such as plugins to connect to Amazon Keyspaces using AWS IAM credentials, code examples of programmatic connections to Amazon Keyspaces written in Java, Python, NodeJS, and more, tools and templates for AWS CloudFormation integration, and how to use Amazon Keyspaces with Lambda. This tutorial shows a testcontainers example with Spring Boot against PostgreSQL. jar ENTRYPOINT ["java","-jar","/app. Here, we are not going to explain how to create a spring boot application as we already have a detailed article on it. We can read more about Spring Data Cassandra in the first and second articles of the series. we can Jan 8, 2024 · Microsoft also provides a module that allows us to work with Cosmos DB using Spring Data. 0 . Currently aggregates pricing data from local cassandra cluster and product information from external api redsky. An advantage of using microservices is that we don’t have to interact with a huge code base. Creating a Spring Boot Application. Before you start supervisor and worker apps you need to start MySQL database, to do that you can use docker-compose. The aim is to demonstrate a running docker container with a spring boot standalone web service thus, I've written the web service with Spring Boot as simple. cassandra example with spring boot via docker Topics. Dec 2, 2020 · server. yml file will contain two images. boot:spring-boot-starter-web, however we have to add couple of additional dependencies like spring-data-cassandra' and 'spring-boot-starter-data-cassandra to work with cassandra. Docker Compose Spring Boot,Zipkin and Cassandra storage example ( also using DTO mapper ) Run the System We can easily run the whole with only a single command: Jul 4, 2022 · Connectivity. Spring Web-Flux uses the Dec 29, 2019 · There are two ways. Use Docker Compose to orchestrate the deployment of these microservices. In this tutorial, our docker-compose setup using two main services or components. Before you start documenting the API, you may first define API description with its basic information, which includes the base URL (development and production environment), title, version, author contact, description, license… Nov 6, 2023 · In this tutorial, we’ll explore the basics of Elasticsearch with Spring Boot with a hands-on and practical approach. 0 your_id/spring-boot:1. In this post, we will discuss how to configure Kafka with Spring Boot to enable message sending. 3. If you’re using a @Bean method, Spring Boot won’t call the bean method to get the Docker image name, because this would cause eager initialization issues. Mar 24, 2024 · Thank you for a great comment but there are 3 main issues. boot. Note: In SpringBootCassandraCrudApplication. cassandra spring-boot Activity. boot-infrastructure down $ docker-compose -f . The docker-compose. Let’s continue to explore more practice with OpenAPI / Swagger 3. Sep 22, 2024 · You have successfully created and deployed two Spring Boot microservices (employee-service and department-service) using Docker Compose. May 20, 2024 · DbSchema is a super-flexible database designer, which can take you from designing the DB with your team all the way to safely deploying the schema. May 12, 2023 · Overview of Spring Boot Cassandra CRUD example. 0_102" Java(TM) SE Runtime Environment (build 1. The registry that the image will be published to is determined by the registry part of the image name (docker. Fill in the details: Project: Maven; Language: Java; Spring Boot Version: 3. There is a spring-boot-starter-data-cassandra starter for collecting the dependencies in a convenient way. Using a practical example with a Cassandra This project is a simple Spring Boot application that accesses a Cassandra cluster. Sep 8, 2020 · The following dependencies are required to setup the Spring boot project along with Cassandra in Pom. But all micro services should be started itself when deploying into docker. Sep 1, 2019 · Establish a connection to Cassandra from a Spring Boot microservice. Before starting, make sure we have the following installed in the system. 0 Considering the first approach, I'd start with checking the container that is running during the test execution: docker ps and see if it starts (i. /docker-compose This project created for an example to understanding Spring Web Flux module with using Reactive Cassandra repositories. JDK 8. docker run --name cassandra-db -d -p 9042:9042 cassandra. We start with a basic Dockerfile and make a few tweaks. 1. Oct 10, 2017 · Am newbie to Spring boot. See full list on baeldung. You have to make sure first container exposes ports second container can connect to, or while starting second container reference ports from first by name Mar 6, 2024 · It means that if we have a docker-compose. Running both applications using Docker Compose in separate docker containers Docker Compose with Spring Boot & Cassandra Microservices with an example. 0 + Circuit Breaker + Resilience4J + FeignClient + RestTemplate Triển khai API CRUD với Cassandra và Spring Boot giúp cho việc quản lý dữ liệu trở nên đơn giản và hiệu quả hơn, đồng thời cung cấp khả năng Jun 29, 2023 · In recent times, Spring Boot has become the de facto framework for creating microservices. 0, which included spring-data-cassandra 3. 8. Configure Cassandra Dependency. If you are not using localhost Cassandra, it is necessary to configure it to use proper endpoints. For further reading about the build files, we refer to the official Dockerfile reference and the docker-compose. Aug 18, 2020 · Step 7: Configuring docker in the Spring Boot app The Dockerfile for the Spring Boot application will contain the following data. This source code is for building Spring Boot Application and containerizing it with Docker. Mar 19, 2014 · Or else you can skip this step and try a docker-compose set up with your own spring boot application which uses MySQL database. Go to https Mar 14, 2021 · With spring-boot there's no need to extend AbstractCassandraConfiguration, it can auto-configure Cassandra for you. For intensive a complete web service example with Spring Boot, you can check out my other repository which is spring-boot-restful-web-service Apr 23, 2024 · Run the Docker Image; Step 1. Microservices are small and flexible. An example project using Spring Boot, Maven, Cassandra, and Kafka. e. If you have tested your application with ScyllaDB and Spring and want to publish the results, contact us using the community The aim is to demonstrate a running docker container with a spring boot standalone web service thus, I've written the web service with Spring Boot as simple. Original Tutorial: Spring Boot Microservices with Docker Compose Example This is a simple example for Spring Boot App using Cassandra as its storage. Here is the sample Spring Boot configuration which instructs the framework create a Cassandra connection on localhost at port 9042 with user name and password, the default keyspace is “supermarket”. It became to available in Spring Boot 2. Click on the links below to go through the topics: Step by Step Tutorials Jan 1, 2025 · 2. Nov 9, 2024 · Software Required: 1. And lastly here's a container I'm trying to connect to: Aug 10, 2016 · User Defined data type is now supported by Spring Data Cassandra. If docker. The connectivity configuration is defined in application. port=8083 spring. The way it does all of that is by using a design model, a database-independent image of the schema, which can be shared in a team using GIT and compared or deployed on to any database. - jvalentino/spring-boot-maven-cassandra-kafka Jan 8, 2024 · In this tutorial, we’ll learn how to use reactive data access features of Spring Data Cassandra. Jun 2, 2020 · In your spring-boot java config you can have a bean which does this. publishRegistry credentials are configured and include a url property, this value is passed to the registry but is not used to determine the publishing registry location. 4. Creat keyspaces, user-defined types, entities, and repositories. It provides a way to implement the retrieval of a cassandra connection with a retry behavior, therefore the service is resilient to a non existing cassandra database and will not fail to start anymore. Spring boot microservice example with Eureka Server + Eureka Client + Spring Cloud API Gateway + OAuth2. Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”. com Nov 29, 2020 · En este Ejemplo de Spring Data con Cassandra y Docker, hemos visto la integración básica para poder conectar nuestra aplicación Spring Boot con Cassandra. spring. And also containering the Apache Cassandra database. com in these examples). Docker Compose Spring Boot,Zipkin and Cassandra storage example ( also using DTO mapper ) Run the System We can easily run the whole with only a single command: Mar 9, 2022 · Spring Boot to pull the backend app image from Docker Angular Web application to run the frontend app in Docker Apache Cassandra® as your distributed, NoSQL database Feb 23, 2024 · <dependency> <groupId>org. By default Spring Boot calls docker compose up when your application starts and docker compose stop when it’s shut down. Examples of repositories will guide you on how to use composite keys to fetch necessary data Start a local cassandra instance docker run --name cassandra -d -P -e CASSANDRA_BROADCAST_ADDRESS=192. Apis help to create, retrieve, update, delete Tutorials. To create a spring boot application, there are several ways but we recommend using the spring’s official online tool – https://start. boot</groupId> <artifactId> spring-boot-starter-data-cassandra </artifactId> </dependency> Spring Boot Cassandra CRUD Examples. Containerize both services using Docker. When I use Idea to run my project it's work fine correctly but when I turn my application into a docker container I have this Spring Boot and Cassandra NoSQL DB can be dockerized can be run as microservices using docker compose. As usual, the source codes for this article can be found on How to create two microservices using Spring Boot: employee-service and department-service. Dec 8, 2021 · This situation has gotten better: the preparing of queries in CassandraRepository changed with the fix for issue #677 and this related commit — Spring Boot 2. $ sudo docker image tag spring-boot:1. 0 `` In production server. Stock APIs (Spring Boot + AKKA + Cassandra) with simple Angular UI - mmahmoodictbd/stock-api Aug 24, 2024 · For a full guide on deploying Spring Boot dockerized apps refer to [guide]. @Configuration @PropertySource("classpath:cassandra. . 2. This section includes topics relating to the Docker Compose support in Spring Boot. If you have Cassandra tools installed locally, check the status of Cassandra This guide walks you through the process of building a Docker image for running a Spring Boot application. Dec 28, 2024 · Here's what we see in top-notch senior java developer resumes. data. We will build a Spring Boot Cassandra Rest CRUD API for a Tutorial application in that: Each Tutorial has id, title, description, published status. docker/spring-boot-cassandra Spring Boot + Apache Cassandra example app. example. Setup Docker Image For Spring Boot Application. 4+, reactive programming and the Spring Framework. Here, you will find Spring Boot Tutorial on various topics step by step. jar app. 3 and hence its working now. ```bash $ sudo docker pull your_id/spring-boot:1. 1. Spring Boot and Swagger API description. Jun 5, 2023 · In this Refactorizando entry on "Example of Spring Data with Cassandra and Docker," we will see how to integrate Spring Data with Cassandra. jar"] Replace your-spring-boot-app with the actual name of your Spring Boot application. java class we have autowired Tutorial on setting up Spring Data Cassandra with Docker containers - lankydan/spring-data-cassandra-docker May 8, 2024 · The Cassandra Query Language (CQL) is very similar to SQL but suited for the JOINless structure of Cassandra. This guide is designed for beginners and includes detailed explanations for each step. RELEASE uses Cassandra Data stax driver 3. - Spring Boot Version: 2. I would like to demonstrate the integration of Spring Boot and Cassandra with a hands-on demo in the video link given below. example - Artifact: cassandra-test - Dependencies: Spring Data Cassandra, Spring Web, Lombok, and Testcontainers. Jan 8, 2024 · In this article, we learned how to build custom Docker images, run a Spring Boot Application as a Docker container, and create containers with docker-compose. You'll see numbers like 45% reduction in load time, increased code efficiency by 20%, 10,000 lines of legacy code optimized, and 30% fewer database queries. First, we need to package our Java business logic into a Spring Boot offers auto-configuration for Cassandra and the abstractions on top of it provided by Spring Data Cassandra. Eclipse/IntelliJ or equivalent IDE. Visit Spring Initializr to generate a project. 4. Connect to Cassandra. We’ll learn to create an index, make CRUD operations, search, and query documents in Elasticsearch using Spring Data Elasticsearch module. In our example, we’ll create a Spring web application that stores a product entity in an Azure Cosmos database and performs basic CRUD operations on it. 100 cassandra:latest Then retrieve the forwarded port using the command docker ps The correct port will correlate to 9042 . "scripted" approach, where you first docker run cassandra container, then you docker run your app. # get the username and password from the secret DB_USER=$(kubectl -n cass-operator get secret cluster1-superuser -o yaml | grep username | cut -d " " -f 4 | base64 -d) DB_PASSWORD=$(kubectl -n cass-operator get secret cluster1-superuser -o yaml | grep password | cut -d " " -f 4 | base64 -d) # create k8s secrets for the services (skip cmd for Spring Boot service if using Astra) kubectl -n This works as long as Spring Boot is able to get the instance of the Container, which is the case when using a static field like in the example above. com. Customizing the JDBC URL When using JdbcConnectionDetails with Docker Compose, the parameters of the JDBC URL can be customized by applying the org. 0 $ sudo docker run -d -p 80:8080 -t spring-boot:1. Aug 27, 2015 · Base on answers from @jan-oudrincky and @alexander-morozov, I build a new docker image which has a wrapper of original docker-entrypoint. It’s as easy as that. Those are the Spring Boot application and MySQL database. Spring boot provides spring-boot-starter-data-cassandra dependency, which allows us to perform CRUD operations from our application with the Cassandra database. x or above - Group: com. Requirements: Docker May 8, 2022 · The problem can be motivated because you are trying to connect to the ScyllaDB nodes with their docker internal IP addresses. Starting and Configuring Cassandra with Docker Starting Cassandra To begin our integration of Cassandra with a Spring Boot application, the first thing we need to Dec 1, 2023 · For the sake of this tutorial, we will create a small instance of the Apache Cassandra database using Docker. 5; Dependencies: Spring Web, Spring Data for Apache Cassandra Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand myRetail springboot application which aggregates data from multiple sources and return the reposnse as a JSON to the user. Contribute to huypva/spring-boot-cassandra-example development by creating an account on GitHub. 3 as of this writing), started to support prepared queries out of the box! Dec 7, 2023 · Setup Apache Cassandra. Mar 17, 2024 · DbSchema is a super-flexible database designer, which can take you from designing the DB with your team all the way to safely deploying the schema. Contribute to reljicd/spring-boot-cassandra development by creating an account on GitHub. If you prefer to have different lifecycle management you can use the spring. This was used as part of a presentation at DataStax Accelerate 2019, the video is available below and walks you through taking an application from synchronous to asynchronous to reactive. For an introduction to Cassandra, click here. Particularly, this is the third article of the Spring Data Cassandra article series. Dec 22, 2023 · With the Spring Boot 3. Jan 21, 2023 · Most of the build configurations are filled by spring initializr, like plugins, repositories, and some dependencies like org. 3. java as spring boot application.
iqj zmfqjt jyli luxhg tiop fqbxs nmahby fhba spkbs gjgb
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}