(MYSQL) Database performance Testing using Jmeter with database test plan

Ғылым және технология

QA beginners in performance testing can use this video for database testing using Jmeter tool.

Пікірлер: 16

  • @AyushiDwivedi-wy2ms
    @AyushiDwivedi-wy2msАй бұрын

    Really Helpful, looking forward to more videos like this for performance and API testing.

  • @YugureInfotech
    @YugureInfotech3 ай бұрын

    This is very informative video which helped.

  • @bijendrasingh2751
    @bijendrasingh27514 жыл бұрын

    Good job Mr. Software test warriors , Thannks for a hardwork for us

  • @softwaretestwarriors1925

    @softwaretestwarriors1925

    4 жыл бұрын

    It's my pleasure

  • @ajeetsingh5716
    @ajeetsingh57163 жыл бұрын

    Awesome video ,it helped in database performance testing.

  • @softwaretestwarriors1925

    @softwaretestwarriors1925

    3 жыл бұрын

    Glad to hear that

  • @VivekSingh-bz8jd
    @VivekSingh-bz8jd4 жыл бұрын

    Good for QA beginners

  • @laalusingh2071
    @laalusingh20713 жыл бұрын

    Nice information.

  • @mannatpandey9924
    @mannatpandey99243 жыл бұрын

    This video helped me.

  • @mr.megatronawarrior4488
    @mr.megatronawarrior44883 жыл бұрын

    Much needed to Mysql

  • @anshusingh-co8ih
    @anshusingh-co8ih4 жыл бұрын

    Can you share same videos for SQL server & posgress ...it will be really helpfull

  • @softwaretestwarriors1925

    @softwaretestwarriors1925

    4 жыл бұрын

    Sure will post in few days

  • @pratheepkumar4218
    @pratheepkumar42184 жыл бұрын

    Hi, how to connect with mongodb.

  • @softwaretestwarriors1925

    @softwaretestwarriors1925

    4 жыл бұрын

    Hi pratheep for mongo DB connection you can follow steps : 1. Download groovy jar file: 2. Download mongo java jar file: 3. Jmx connection: use below code import com.mongodb.* import com.mongodb.client.MongoClients; import com.mongodb.client.MongoClient; import com.mongodb.MongoClientSettings; import com.mongodb.ServerAddress; import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoDatabase; import org.bson.Document; import java.util.Arrays; try { MongoClientSettings settings = MongoClientSettings.builder() .applyToClusterSettings {builder -> builder.hosts(Arrays.asList(new ServerAddress(vars.get("mongoHost"),vars.get("mongoPort").toInteger())))} .build(); MongoClient mongoClient = MongoClients.create(settings); MongoDatabase database = mongoClient.getDatabase(vars.get("databaseName")); MongoCollection collection = database.getCollection(vars.get("collectionName")); vars.putObject("collection", collection); return "Connected to " + vars.get("collectionName"); } catch (Exception e) { SampleResult.setSuccessful(false); SampleResult.setResponseCode("500"); SampleResult.setResponseMessage("Exception: " + e); } Note : Above config maybe bit complex , I will come up with my next videos on all DB's widely used

  • @pratheepkumar4218

    @pratheepkumar4218

    4 жыл бұрын

    @@softwaretestwarriors1925 thanks

  • @nitishsingh8539
    @nitishsingh85393 жыл бұрын

    Hello

Келесі